Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
struct_no_extra_attr_keep.vv
27
lines
·
23
sloc
·
236 bytes
·
757929392e0e7a75fc1272116460981e589737d5
Raw
1
@[typedef]
2
struct Foo {
3
}
4
5
@[typedef]
6
struct Bar {
7
x string
8
y int
9
}
10
11
@[heap]
12
struct Baz {
13
x string
14
y int
15
}
16
17
@[inline]
18
struct Spam {
19
x string
20
y int
21
}
22
23
@[deprecated]
24
struct Eggs {
25
y_y int @[json: yY]
26
x string @[deprecated]
27
}
28