Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
parser
/
tests
/
closure_var_name_conflict.vv
10
lines
·
8
sloc
·
75 bytes
·
c64c4907a2b8785115c2f7be2fd1ef3b946a4f9d
Raw
1
fn main() {
2
x := 1
3
4
y := fn [x] (x int) {
5
println(x)
6
}
7
8
y(x)
9
y(2)
10
}
11