v/vlib/v/checker/tests/ambiguous_function_call_b.v

9 lines
55 B
V

fn foo() {
foo := 1
foo(foo)
}
fn main() {
foo()
}