1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/struct_embed_duplicate.out
Alexander Medvednikov 2c75b1397c all: struct embedding
2020-10-30 07:09:26 +01:00

7 lines
190 B
Plaintext

vlib/v/parser/tests/struct_embed_duplicate.vv:7:2: error: cannot embed `Abc` more than once
5 | struct Xyz {
6 | Abc
7 | Abc
| ~~~
8 | bar int
9 | }