1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/parser/tests/closure_not_declared.vv

9 lines
63 B
V

fn my_fn() {
a := 1
f := fn () {
print(a)
}
f()
_ = a
}