v/vlib/v/checker/tests/fn_call_arg_mismatch_err_b.vv

8 lines
57 B
V

fn main() {
foo(bar())
}
fn foo(x int) {}
fn bar() {}