mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
16 lines
208 B
Nim
16 lines
208 B
Nim
discard """
|
|
errormsg: "cannot instantiate B"
|
|
line: 14
|
|
nimout: '''
|
|
got: <typedesc[int]>
|
|
but expected: <T: string or float>
|
|
'''
|
|
"""
|
|
|
|
type
|
|
B[T: string|float] = object
|
|
child: ref B[T]
|
|
|
|
var b: B[int]
|
|
|