v2 / vlib / v / checker / tests / infix_compare_option_err.out
7 lines · 7 sloc · 222 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/infix_compare_option_err.vv:6:5: error: `?int` cannot be used as `int`, unwrap the option first
2 4 |
3 5 | fn main() {
4 6 | if foo() > foo() {
5 | ~~~~~
6 7 | }
7 8 | }
8