v2 / vlib / v / fmt / tests / struct_update_comment_keep.vv
18 lines · 16 sloc · 165 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 // before
15 ...f // after
16 name: 'f2'
17 }
18}
19