Update test_issue_7188.odin

Add missing commas.
This commit is contained in:
Jeroen van Rijn
2026-08-07 20:05:53 +02:00
committed by GitHub
parent bc32696a5a
commit e140512954

View File

@@ -4,10 +4,10 @@ main :: proc() {
val: f32 = 42.0
// unable to broadcast like ([4][4]f32)(1) or (#soa[4][4]f32)(([4]f32)(1))
_ = #soa[2][2]f32 {
0..<2 = val
0..<2 = val,
}
vtxs := #soa[33][2]f32 {
0..<33 = val
0..<33 = val,
}
_ = vtxs.x[32]
}