vxx2 / vlib / v / checker / tests / identifier_name_starts_with_number_err.vv
4 lines · 4 sloc · 40 bytes · abe02db7ae9ef5957e0ac461f623b09a74d5d92e
Raw
1fn main() {
2 mut 3a := 1
3 println(3a)
4}
5