v2 / vlib / v / checker / tests / var_eval_not_used.out
6 lines · 6 sloc · 148 bytes · a741db43f388822bd078daa617d285ed6cf7766b
Raw
1vlib/v/checker/tests/var_eval_not_used.vv:4:2: error: `c` evaluated but not used
2 2 |
3 3 | fn main() {
4 4 | c
5 | ^
6 5 | }
7