v2 / vlib / v / checker / tests / anon_arg_redefinition_err.vv
4 lines · 4 sloc · 42 bytes · 248e9538ca79ed3a6d9033b84d2132cf5f8a011e
Raw
1fn main() {
2 a := fn (a int, a int) {
3 }
4}