blob: dab9c7d0723108ae8ff3dfd1c7c6f8d17d5015e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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
}
|