summary refs log tree commit diff stats
path: root/tests/accept/run/tsplit.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tsplit.nim')
-rwxr-xr-xtests/accept/run/tsplit.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/accept/run/tsplit.nim b/tests/accept/run/tsplit.nim
deleted file mode 100755
index 711696b9e..000000000
--- a/tests/accept/run/tsplit.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-import strutils
-
-var s = ""
-for w in split("|abc|xy|z", {'|'}):
-  s.add("#")
-  s.add(w)
-
-if s == "#abc#xy#z":
-  echo "true"
-else:
-  echo "false"
-  
-#OUT true
-