mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
17 lines
217 B
Nim
17 lines
217 B
Nim
|
|
|
|
# bug #4462
|
|
import macros
|
|
|
|
proc foo(t: typedesc) {.compileTime.} =
|
|
echo getType(t).treeRepr
|
|
|
|
static:
|
|
foo(int)
|
|
|
|
# #4412
|
|
proc default[T](t: typedesc[T]): T {.inline.} = discard
|
|
|
|
static:
|
|
var x = default(type(0))
|