v/vlib/v/checker/tests/assign_fn_call_on_left_side...

7 lines
216 B
Plaintext

vlib/v/checker/tests/assign_fn_call_on_left_side_err.vv:6:2: error: cannot call function `foo()` on the left side of an assignment
4 |
5 | fn main() {
6 | foo('s') = 1
| ~~~~~~~~
7 | }