v4 / vlib / v / checker / tests / no_goto_requires_unsafe_in_translated.vv
17 lines · 15 sloc · 130 bytes · a867ed6a7b41dcd2b4b110abdb8df2c17631da99
Raw
1@[translated]
2module main
3
4fn f() {
5 goto f2
6 goto a1
7 a1:
8 goto a1
9 f2:
10 goto a1
11}
12
13fn main() {
14 goto m1
15 m1:
16 println('done')
17}
18