tselfimport.nim 192 B

12345678910
  1. discard """
  2. file: "tselfimport.nim"
  3. line: 7
  4. errormsg: "A module cannot import itself"
  5. """
  6. import strutils as su # guard against regression
  7. import tselfimport #ERROR
  8. echo("Hello World")