v2 / vlib / v / checker / tests / anon_struct_assign_err.vv
12 lines · 11 sloc · 108 bytes · 9d56432e55873924b57e5a4bd19624787d065668
Raw
1struct Abc {
2 name string
3}
4
5mut y := Abc{
6 name: 'Abc'
7}
8println(y)
9y = struct {
10 name: 'Def'
11}
12println(y)
13