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

checker: fix multi_const_field_name_duplicate test

This commit is contained in:
Alexander Medvednikov 2020-07-14 17:44:08 +02:00
parent 899c69caf1
commit 06f5279f77

View File

@ -1,4 +1,4 @@
vlib/v/checker/tests/multi_const_field_name_duplicate_err.v:2:8: error: field name `aaa` duplicate
vlib/v/checker/tests/multi_const_field_name_duplicate_err.v:2:8: error: duplicate const `aaa`
1 | const (aaa = 1)
2 | const (aaa = 2)
| ~~~