v4 / vlib / v / checker / tests / option_and_result_err.out
5 lines · 5 sloc · 169 bytes · 6d2c3a9caace51a6cc1ccf1c9113da6e197397d5
Raw
1vlib/v/checker/tests/option_and_result_err.vv:1:11: error: the type must be Option or Result
2 1 | fn foo() !?i32 {
3 | ^
4 2 | return 6
5 3 | }
6