Files
Nim/tests/generics/t24848.nim
ringabout 15d1fafc71 progress
2026-08-05 22:27:37 +08:00

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]]]()