mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-24 20:59:52 +00:00
11 lines
149 B
Odin
11 lines
149 B
Odin
// Tests issue #6621 https://github.com/odin-lang/Odin/issues/6621
|
|
package test_issues
|
|
|
|
t: struct {
|
|
next: ^type_of(t),
|
|
}
|
|
|
|
main :: proc() {
|
|
_ = t
|
|
}
|