mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 09:54:45 +00:00
14 lines
218 B
Odin
14 lines
218 B
Odin
// Tests issue #2113 https://github.com/odin-lang/Odin/issues/2113
|
|
// Causes a panic on compilation
|
|
package test_issues
|
|
|
|
T :: struct {
|
|
a: int,
|
|
}
|
|
|
|
main :: proc() {
|
|
array: #soa[1]T
|
|
a := &array[0]
|
|
_ = a
|
|
}
|