mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
19 lines
322 B
Nim
19 lines
322 B
Nim
discard """
|
|
cmd: "nim check $options $file"
|
|
errormsg: "'proc' is not a concrete type"
|
|
errormsg: "'Foo' is not a concrete type."
|
|
errormsg: "invalid type: 'proc' in this context: 'TBaseMed'"
|
|
"""
|
|
|
|
type
|
|
Foo[T] = object
|
|
x: T
|
|
|
|
TBaseMed = object
|
|
doSmth: proc
|
|
data: seq[Foo]
|
|
|
|
var a: TBaseMed
|
|
|
|
# issue 188
|