mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-23 15:11:40 +00:00
11 lines
158 B
Nim
11 lines
158 B
Nim
discard """
|
|
errormsg: "'typedesc[R[system.int]]' is not a concrete type"
|
|
line: 8
|
|
"""
|
|
|
|
# issue #24848
|
|
type R[C] = ref object
|
|
b: C
|
|
|
|
discard R[[R[int]]]()
|