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

8 lines
191 B
Plaintext

vlib/v/checker/tests/const_field_name_duplicate_err.vv:3:2: error: duplicate const `aaa`
1 | const (
2 | aaa = 1
3 | aaa = 2
| ~~~
4 | )
5 | fn main() {