v2 / vlib / v / checker / tests / anon_struct_assign_err.out
7 lines · 7 sloc · 218 bytes · 9d56432e55873924b57e5a4bd19624787d065668
Raw
1vlib/v/checker/tests/anon_struct_assign_err.vv:9:12: error: cannot assign anonymous `struct` to a typed `struct`
2 7 | }
3 8 | println(y)
4 9 | y = struct {
5 | ^
6 10 | name: 'Def'
7 11 | }
8