v2 / vlib / v / parser / tests / option_result_err.out
5 lines · 5 sloc · 168 bytes · 6d2c3a9caace51a6cc1ccf1c9113da6e197397d5
Raw
1vlib/v/parser/tests/option_result_err.vv:1:11: error: the type must be Option or Result
2 1 | fn abc() ?!string {
3 | ^
4 2 | return ''
5 3 | }
6