summary refs log tree commit diff stats
path: root/tests/compile/trecmod2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/trecmod2.nim')
-rw-r--r--tests/compile/trecmod2.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/compile/trecmod2.nim b/tests/compile/trecmod2.nim
deleted file mode 100644
index 85fe2215f..000000000
--- a/tests/compile/trecmod2.nim
+++ /dev/null
@@ -1,10 +0,0 @@
-type
-  T1* = int  # Module A exports the type ``T1``
-
-import mrecmod2   # the compiler starts parsing B
-
-proc main() =
-  var i = p(3) # works because B has been parsed completely here
-
-main()
-