Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
incorrect_name_variable.out
6
lines
·
6
sloc
·
192 bytes
·
86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1
vlib/v/checker/tests/incorrect_name_variable.vv:2:2: error: variable name `_abc` cannot start with `_`
2
1 | fn main() {
3
2 | _abc := 1
4
| ~~~~
5
3 | _ = _abc
6
4 | }