summary refs log tree commit diff stats
path: root/tests/modules/tselfimport.nim
blob: ba5d9b4cf80d78681b696f1c530540c009e5ebe0 (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "module 'tselfimport' cannot import itself"
  file: "tselfimport.nim"
  line: 7
"""
import strutils as su # guard against regression
import tselfimport #ERROR
echo("Hello World")