v/vlib/v/checker/tests/propagate_option_with_resul...

8 lines
261 B
Plaintext

vlib/v/checker/tests/propagate_option_with_result_err.vv:6:7: warning: propagating a result like an option is deprecated, use `foo()!` instead of `foo()?`
4 |
5 | fn bar() ?string {
6 | foo()?
| ^
7 | return ''
8 | }