v/vlib/v/checker/tests/modules/overload_return_type.out

7 lines
229 B
Plaintext

vlib/v/checker/tests/modules/overload_return_type/main.v:14:8: error: cannot assign to `two`: expected `point.Point`, not `int`
12 | y: 1
13 | }
14 | two = one + two
| ~~~~~~~~~
15 | }