mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-26 08:31:44 +00:00
13 lines
204 B
Nim
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
|