mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
222 B
Plaintext
7 lines
222 B
Plaintext
vlib/v/checker/tests/ambiguous_function_call_a.v:2:2: error: ambiguous call to: `foo`, may refer to fn `foo` or variable `foo`
|
|
1 | fn foo(foo int) {
|
|
2 | foo(foo + 1)
|
|
| ~~~~~~~~~~~~
|
|
3 | }
|
|
4 |
|