| 1 | vlib/v/checker/tests/fn_call_arg_mismatch_err_b.vv:5:8: notice: unused parameter: `x` |
| 2 | 3 | } |
| 3 | 4 | |
| 4 | 5 | fn foo(x int) {} |
| 5 | | ^ |
| 6 | 6 | |
| 7 | 7 | fn bar() {} |
| 8 | 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` |
| 9 | 1 | fn main() { |
| 10 | 2 | foo(bar()) |
| 11 | | ~~~~~ |
| 12 | 3 | } |
| 13 | 4 | |
| 14 |