Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
option_var_assign_err.out
7
lines
·
7
sloc
·
317 bytes
·
39e80afab0f8720de2593d36eddacbf7ea0189f3
Raw
1
vlib/v/checker/tests/option_var_assign_err.vv:7:12: error: cannot assign an Option value to a non-option variable
2
5 |
3
6 | if value == 1 {
4
7 | result = trying_to_change_non_opt_to_option(0)
5
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
8 | }
7
9 | return result
8