v2 / vlib / v / parser / tests / operator_normal_fn.out
5 lines · 5 sloc · 182 bytes · 0caf668e7326a9389e7abfc8df25914505a287d1
Raw
1vlib/v/parser/tests/operator_normal_fn.vv:1:4: error: cannot use operator overloading with normal functions
2 1 | fn +(x int) int {
3 | ^
4 2 | return 5 + x
5 3 | }
6