vxx2 / vlib / v / checker / tests / propagate_result_with_option.out
7 lines · 7 sloc · 234 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1vlib/v/checker/tests/propagate_result_with_option.vv:6:7: error: to propagate a Result, the call must also return a Result type
2 4 |
3 5 | fn bar() !string {
4 6 | foo()!
5 | ^
6 7 | return ''
7 8 | }
8