mirror of
https://github.com/odin-lang/Odin.git
synced 2026-09-02 18:23:35 +00:00
7 lines
144 B
Odin
7 lines
144 B
Odin
// Tests issue #7260 https://github.com/odin-lang/Odin/issues/7260
|
|
package test_issues
|
|
|
|
A :: [2]int
|
|
|
|
#assert(A{0 = 0, 1 = 1} == {1 = 1, 0 = 0})
|