vxx2 / vlib / v / checker / tests / if_expr_result_err.out
7 lines · 7 sloc · 240 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1vlib/v/checker/tests/if_expr_result_err.vv:6:5: error: non-bool type `!bool` used as if condition
2 4 |
3 5 | fn main() {
4 6 | if get_bool() {
5 | ~~~~~~~~~~
6 7 | println('Using plain lists')
7 8 | }
8