summary refs log tree commit diff stats
path: root/tests/stdlib/tsplit2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tsplit2.nim')
-rw-r--r--tests/stdlib/tsplit2.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/stdlib/tsplit2.nim b/tests/stdlib/tsplit2.nim
deleted file mode 100644
index 7fd9dda74..000000000
--- a/tests/stdlib/tsplit2.nim
+++ /dev/null
@@ -1,19 +0,0 @@
-discard """
-  file: "tsplit2.nim"
-  output: "true"
-"""
-import strutils
-
-var s = ""
-for w in split("|abc|xy|z", {'|'}):
-  s.add("#")
-  s.add(w)
-
-try:
-  discard "hello".split("")
-  echo "false"
-except AssertionError:
-  echo "true"
-
-#OUT true
-