v/vlib/v/checker/tests/unexpected_or.out

7 lines
254 B
Plaintext

vlib/v/checker/tests/unexpected_or.vv:6:17: error: unexpected `or` block, the function `ret_zero` does neither return an optional nor a result
4 |
5 | fn main() {
6 | _ = ret_zero() or { 1 }
| ~~~~~~~~
7 | }