Files
Nim/tests/generics/t21601.nim
2026-08-05 21:55:45 +08:00

13 lines
204 B
Nim

discard """
errormsg: "'typedesc' is not a concrete type"
line: 10
"""
# issue #21601
type Person = object
type Builder* = ref object of RootObj
class*: typedesc
echo Builder(class: Person).repr