tmodule1.nim 548 B

123456789101112131415161718192021222324
  1. discard """
  2. nimout: '''tmodule1.nim(11, 8) Warning: goodbye; importme is deprecated [Deprecated]
  3. tmodule1.nim(14, 10) Warning: Ty is deprecated [Deprecated]
  4. tmodule1.nim(17, 10) Warning: hello; Ty1 is deprecated [Deprecated]
  5. tmodule1.nim(20, 8) Warning: aVar is deprecated [Deprecated]
  6. tmodule1.nim(22, 3) Warning: aProc is deprecated [Deprecated]
  7. tmodule1.nim(23, 3) Warning: hello; aProc1 is deprecated [Deprecated]
  8. '''
  9. """
  10. import importme
  11. block:
  12. var z: Ty
  13. z = 0
  14. block:
  15. var z: Ty1
  16. z = 0
  17. block:
  18. echo aVar
  19. block:
  20. aProc()
  21. aProc1()