mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
17 lines
258 B
Nim
17 lines
258 B
Nim
discard """
|
|
output: "0"
|
|
"""
|
|
|
|
type
|
|
CircAlloc* [Size: static[int] , T] = tuple
|
|
baseArray : array[Size,T]
|
|
index : uint16
|
|
|
|
type
|
|
Job = object of RootObj
|
|
|
|
var foo {.threadvar.}: CircAlloc[1,Job]
|
|
|
|
when true:
|
|
echo foo.index
|