Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
anon_arg_redefinition_err.out
6
lines
·
6
sloc
·
204 bytes
·
248e9538ca79ed3a6d9033b84d2132cf5f8a011e
Raw
1
vlib/v/checker/tests/anon_arg_redefinition_err.vv:2:18: error: redefinition of parameter `a`
2
1 | fn main() {
3
2 | a := fn (a int, a int) {
4
| ^
5
3 | }
6
4 | }
7