v4 / vlib / v2_toberemoved / gen / cleanc / tests / soa_struct.v
13 lines · 11 sloc · 202 bytes · c0624b274a458fe3e487d89ae9554c2e8c25bdb6
Raw
1module main
2
3@[soa]
4struct Vec2 {
5 x f32
6 y f32
7}
8
9fn main() {
10 // Test that the SOA struct definition is generated
11 // The companion type Vec2_SOA should be available
12 println('soa_struct test: ok')
13}
14