mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
11 lines
93 B
V
11 lines
93 B
V
fn test_goto() {
|
|
mut i := 0
|
|
a: b := 1
|
|
_ = b
|
|
i++
|
|
if i < 3 {
|
|
goto a
|
|
}
|
|
assert i == 3
|
|
}
|