Files
Nim/tests/modules/tselfimport.nim
2018-12-11 21:23:21 +01:00

9 lines
191 B
Nim

discard """
errormsg: "A module cannot import itself"
file: "tselfimport.nim"
line: 7
"""
import strutils as su # guard against regression
import tselfimport #ERROR
echo("Hello World")