summary refs log tree commit diff stats
path: root/tests/stdlib/tformat.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tformat.nim')
-rw-r--r--tests/stdlib/tformat.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/stdlib/tformat.nim b/tests/stdlib/tformat.nim
deleted file mode 100644
index 160ab0fd5..000000000
--- a/tests/stdlib/tformat.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-discard """
-  file: "tformat.nim"
-  output: "Hi Andreas! How do you feel, Rumpf?"
-"""
-# Tests the new format proc (including the & and &= operators)
-
-import strutils
-
-echo("Hi $1! How do you feel, $2?\n" % ["Andreas", "Rumpf"])
-#OUT Hi Andreas! How do you feel, Rumpf?
-
-