diff options
Diffstat (limited to 'v_windows/v/old/vlib/v/checker/tests/function_arg_redefinition.out')
-rw-r--r-- | v_windows/v/old/vlib/v/checker/tests/function_arg_redefinition.out | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/v/checker/tests/function_arg_redefinition.out b/v_windows/v/old/vlib/v/checker/tests/function_arg_redefinition.out new file mode 100644 index 0000000..e540131 --- /dev/null +++ b/v_windows/v/old/vlib/v/checker/tests/function_arg_redefinition.out @@ -0,0 +1,5 @@ +vlib/v/checker/tests/function_arg_redefinition.vv:1:17: error: redefinition of parameter `para1` + 1 | fn f(para1 int, para1 f32) int { + | ~~~~~ + 2 | return para1 + 3 | } |