tmake_tuple_visible.nim 469 B

123456789101112131415161718192021222324
  1. discard """
  2. errormsg: '''got <tuple of (type NimEdAppWindow, int)>'''
  3. line: 22
  4. nimout: '''got <tuple of (type NimEdAppWindow, int)>
  5. but expected one of:
  6. template xxx(tn: typedesc; i: int)'''
  7. """
  8. type
  9. NimEdAppWindow = ptr NimEdAppWindowObj
  10. NimEdAppWindowObj = object
  11. i: int
  12. template gDefineTypeExtended*(tn: typeDesc) =
  13. discard
  14. gDefineTypeExtended (NimEdAppWindow)
  15. template xxx*(tn: typeDesc, i: int) =
  16. discard
  17. xxx (NimEdAppWindow, 0)
  18. # bug #6776