aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/ambiguous_function_call.out
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/vlib/v/checker/tests/ambiguous_function_call.out')
-rw-r--r--v_windows/v/old/vlib/v/checker/tests/ambiguous_function_call.out13
1 files changed, 13 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/v/checker/tests/ambiguous_function_call.out b/v_windows/v/old/vlib/v/checker/tests/ambiguous_function_call.out
new file mode 100644
index 0000000..b88ef1a
--- /dev/null
+++ b/v_windows/v/old/vlib/v/checker/tests/ambiguous_function_call.out
@@ -0,0 +1,13 @@
+vlib/v/checker/tests/ambiguous_function_call.vv:2:2: error: ambiguous call to: `foo1`, may refer to fn `foo1` or variable `foo1`
+ 1 | fn foo1(foo1 int) {
+ 2 | foo1(foo1 + 1)
+ | ~~~~~~~~~~~~~~
+ 3 | }
+ 4 |
+vlib/v/checker/tests/ambiguous_function_call.vv:7:2: error: ambiguous call to: `foo2`, may refer to fn `foo2` or variable `foo2`
+ 5 | fn foo2() {
+ 6 | foo2 := 1
+ 7 | foo2(foo2)
+ | ~~~~~~~~~~
+ 8 | }
+ 9 |