Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
option_var_assign_err.vv
14
lines
·
11
sloc
·
238 bytes
·
39e80afab0f8720de2593d36eddacbf7ea0189f3
Raw
1
module main
2
3
fn trying_to_change_non_opt_to_option(value int) ?int {
4
mut result := 122
5
6
if value == 1 {
7
result = trying_to_change_non_opt_to_option(0)
8
}
9
return result
10
}
11
12
fn main() {
13
println(trying_to_change_non_opt_to_option(0))
14
}
15