1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/expr_evaluated_but_not_used_if.out

8 lines
213 B
Plaintext

vlib/v/parser/tests/expr_evaluated_but_not_used_if.vv:3:5: error: expression evaluated but not used
1 | fn main() {
2 | if true {
3 | 1 + 1
| ~~~~~
4 | 1 + 1
5 | } else {