Files
Odin/tests/issues/test_issue_6401.odin
2026-03-11 03:04:26 +05:30

17 lines
216 B
Odin

// Tests issue #6401 https://github.com/odin-lang/Odin/issues/6401
package test_issues
Wrapper :: struct(T: typeid) {
value: T,
}
A :: struct {
value: Wrapper(B),
}
B :: struct {
value: A,
}
main :: proc() {}