Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
assign_none.out
6
lines
·
6
sloc
·
194 bytes
·
b60132d2ac7f5b5a518a4d6fdb705a9244a5c5e7
Raw
1
vlib/v/checker/tests/assign_none.vv:2:9: error: cannot assign a `none` value to a variable
2
1 | fn main() {
3
2 | val := none
4
| ~~~~
5
3 | println(val)
6
4 | }
7