v2 / vlib / v / fmt / tests / struct_update_keep.vv
17 lines · 15 sloc · 144 bytes · c51d30bf5309653c6b573ec815268e69a78ea8cc
Raw
1struct Foo {
2 name string
3 age int
4}
5
6struct Foo2 {}
7
8fn main() {
9 f := Foo{
10 name: 'test'
11 age: 18
12 }
13 f2 := Foo{
14 ...f
15 name: 'f2'
16 }
17}
18