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

8 lines
64 B
V

fn foo(s string) int {
return 1
}
fn main() {
foo('s') = 1
}