mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-26 01:01:48 +00:00
20 lines
317 B
Odin
20 lines
317 B
Odin
// Tests issue #7037 https://github.com/odin-lang/Odin/issues/7037
|
|
|
|
package test_issues
|
|
|
|
Arena :: struct {
|
|
last: ^ArenaAllocation,
|
|
}
|
|
|
|
_ArenaAllocation :: struct {
|
|
prev: ^ArenaAllocation,
|
|
}
|
|
|
|
ArenaAllocation :: _ArenaAllocation
|
|
|
|
main :: proc() {
|
|
arena: Arena
|
|
allocation: ArenaAllocation
|
|
arena.last = &allocation
|
|
}
|