mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
222 B
Plaintext
7 lines
222 B
Plaintext
vlib/v/checker/tests/infix_compare_optional_err.vv:6:5: error: unwrapped optional cannot be compared in an infix expression
|
|
4 |
|
|
5 | fn main(){
|
|
6 | if foo() > foo() {}
|
|
| ~~~~~~~~~~~~~
|
|
7 | }
|