v/vlib/v/checker/tests/break_anon_fn_err.vv

9 lines
75 B
V

fn main() {
for true {
_ := fn () int {
break
return 3
}()
}
}