blob: 7e50bef7c52a668db5b3f052c214669eeded6551 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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")
|