vxx2 / vlib / v / checker / tests / struct_assigned_to_pointer_to_struct.vv
11 lines · 10 sloc · 84 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1struct Foo {
2 x int
3}
4
5fn main() {
6 mut f := &Foo{10}
7 f = Foo{
8 x: 20
9 }
10 _ = f
11}
12