v/vlib/v/checker/tests/unexpected_or_propagate.out

8 lines
253 B
Plaintext

vlib/v/checker/tests/unexpected_or_propagate.vv:6:17: error: unexpected `?`, the function `ret_zero` does not return an optional
4 |
5 | fn opt_fn() ?int {
6 | a := ret_zero()?
| ^
7 | return a
8 | }