mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
12 lines
348 B
Nim
12 lines
348 B
Nim
discard """
|
|
errormsg: "cannot instantiate 'GenericParentType[T]' inside of type definition: 'GenericChildType'; Maybe generic arguments are missing?"
|
|
line: 8
|
|
"""
|
|
|
|
type
|
|
GenericParentType[T] = ref object of RootObj
|
|
GenericChildType[T] = ref object of GenericParentType # missing the [T]
|
|
val: T
|
|
|
|
var instance : GenericChildType[int] = nil
|