summary refs log tree commit diff stats
path: root/tests/overload/toverwr.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/overload/toverwr.nim')
-rw-r--r--tests/overload/toverwr.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/overload/toverwr.nim b/tests/overload/toverwr.nim
deleted file mode 100644
index 5945a6149..000000000
--- a/tests/overload/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) =
-  discard # a nop
-
-system.write(stdout, "hello")
-#OUT hello
-
-