mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
8 lines
200 B
Plaintext
8 lines
200 B
Plaintext
vlib/v/parser/tests/closure_not_declared.vv:4:9: error: undefined ident: `a`
|
|
2 | a := 1
|
|
3 | f := fn () {
|
|
4 | print(a)
|
|
| ^
|
|
5 | }
|
|
6 | f()
|