1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/goto_test.v
2020-05-11 23:49:08 +02:00

11 lines
93 B
V

fn test_goto() {
mut i := 0
a: b := 1
_ = b
i++
if i < 3 {
goto a
}
assert i == 3
}