v2 / vlib / v / checker / tests / fn_call_arg_mismatch_err_e.vv
9 lines · 8 sloc · 83 bytes · 17f3c8f8135f9ed0ec43a441ed0de4f1df5a9923
Raw
1fn f(x int) {
2 println(x)
3}
4
5fn main() {
6 x := u32(2251797157)
7 println(x)
8 f(x)
9}
10