v/vlib/v/checker/tests/function_arg_mutable_err.vv

9 lines
69 B
V

fn mod_ptr(mut a int) {
a = 77
}
fn main() {
println('hello')
}