Files
Odin/tests/issues/test_issue_6621.odin
Nikolay Hadzhiev f91fd92842 gh 6621
2026-04-27 10:28:35 +02:00

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
}