v2 / vlib / v / parser / tests / struct_anon_invalid_embed_err.out
6 lines · 6 sloc · 200 bytes · b3b6ce5b97c74cd174040ec635fb2d3f9a2a77b6
Raw
1vlib/v/parser/tests/struct_anon_invalid_embed_err.vv:3:6: error: cannot embed non-struct `Int`
2 1 | type Int = int
3 2 | type MyIndex = struct {
4 3 | Int Int
5 | ~~~
6 4 | }
7