mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-06 06:38:20 +00:00
17 lines
216 B
Odin
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() {}
|