v/vlib/v/checker/tests/fn_call_arg_mismatch_err_b.out

7 lines
202 B
Plaintext

vlib/v/checker/tests/fn_call_arg_mismatch_err_b.vv:2:6: error: `bar()` (no value) used as value in argument 1 to `foo`
1 | fn main() {
2 | foo(bar())
| ~~~~~
3 | }
4 |