v2 / vlib / v / checker / tests / modules / module_struct_noinit / mod / mod.v
9 lines · 7 sloc · 75 bytes · b474aa0faf8d055aaced80ed0687ac354d0864a0
Raw
1module mod
2
3@[noinit]
4pub struct Foo {
5}
6
7@[noinit]
8pub struct Foo2[T] {
9}
10