v2 / vlib / v / checker / tests / identifier_name_starts_with_number_err.out
6 lines · 6 sloc · 220 bytes · abe02db7ae9ef5957e0ac461f623b09a74d5d92e
Raw
1vlib/v/checker/tests/identifier_name_starts_with_number_err.vv:2:6: error: identifier name `3a` cannot start with a number
2 1 | fn main() {
3 2 | mut 3a := 1
4 | ~~
5 3 | println(3a)
6 4 | }
7