v2 / vlib / v / fmt / tests / struct_no_extra_attr_keep.vv
27 lines · 23 sloc · 236 bytes · 757929392e0e7a75fc1272116460981e589737d5
Raw
1@[typedef]
2struct Foo {
3}
4
5@[typedef]
6struct Bar {
7 x string
8 y int
9}
10
11@[heap]
12struct Baz {
13 x string
14 y int
15}
16
17@[inline]
18struct Spam {
19 x string
20 y int
21}
22
23@[deprecated]
24struct Eggs {
25 y_y int @[json: yY]
26 x string @[deprecated]
27}
28