v / vlib / v2 / gen / cleanc / tests / soa_struct.v
13 lines · 11 sloc · 202 bytes · ffe664050347ccd36d6c4f07b65a4ed652ad4ed8
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