v2 / vlib / v / tests / comptime / comptime_array_fixed_field_test.v
11 lines · 10 sloc · 112 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1struct Another {
2 a [3]int
3 b [4]u8
4 c [2]u32
5}
6
7fn test_main() {
8 $for f in Another.fields {
9 }
10 assert true
11}
12