Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
propagate_option_with_result_err.out
7
lines
·
7
sloc
·
259 bytes
·
f8693adfa249b75fd9201edacd801b1f0cedd4db
Raw
1
vlib/v/checker/tests/propagate_option_with_result_err.vv:6:7: error: propagating a Result like an Option is deprecated, use `foo()!` instead of `foo()?`
2
4 |
3
5 | fn bar() ?string {
4
6 | foo()?
5
| ^
6
7 | return ''
7
8 | }
8