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_d.out

7 lines
208 B
Plaintext

vlib/v/parser/tests/expr_evaluated_but_not_used_d.vv:4:19: error: expression evaluated but not used
2 | a := 1
3 | b := 2
4 | println(a*b), a+b
| ~~~
5 | }