v/vlib/v/checker/tests/function_arg_redefinition.vv

8 lines
81 B
V

fn f(para1 int, para1 f32) int {
return para1
}
fn main() {
a := f(11, 1.1)
}