v/vlib/v/fmt/tests/struct_no_extra_attr_keep.vv

28 lines
229 B
V

[typedef]
struct Foo {
}
[typedef]
struct Bar {
x string
y int
}
[heap]
struct Baz {
x string
y int
}
[inline]
struct Spam {
x string
y int
}
[deprecated]
struct Eggs {
y_y int [json: yY]
x string [deprecated]
}