mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
16 lines
253 B
Nim
16 lines
253 B
Nim
discard """
|
|
action: compile
|
|
"""
|
|
|
|
import std/macros
|
|
|
|
macro matchMe(x: typed): untyped =
|
|
discard x.getTypeImpl
|
|
|
|
type
|
|
ElementRT = object
|
|
Element[Z] = ElementRT # this version is needed, even though we don't use it
|
|
|
|
let ar = ElementRT()
|
|
matchMe(ar)
|