tmetafield.nim 322 B

12345678910111213141516171819
  1. discard """
  2. cmd: "nim check $options $file"
  3. errormsg: "'proc' is not a concrete type"
  4. errormsg: "'Foo' is not a concrete type."
  5. errormsg: "invalid type: 'proc' in this context: 'TBaseMed'"
  6. """
  7. type
  8. Foo[T] = object
  9. x: T
  10. TBaseMed = object
  11. doSmth: proc
  12. data: seq[Foo]
  13. var a: TBaseMed
  14. # issue 188