summary refs log tree commit diff stats
path: root/tests/run/toverwr.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/toverwr.nim')
-rwxr-xr-xtests/run/toverwr.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/run/toverwr.nim b/tests/run/toverwr.nim
deleted file mode 100755
index ef25e8913..000000000
--- a/tests/run/toverwr.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-discard """
-  file: "toverwr.nim"
-  output: "hello"
-"""
-# Test the overloading resolution in connection with a qualifier

-

-proc write(t: TFile, s: string) =

-  nil # a nop

-

-system.write(stdout, "hello")

-#OUT hello

-
-