mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-14 01:34:35 +00:00
Update test_issue_7188.odin
Add missing commas.
This commit is contained in:
@@ -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]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user