summary refs log tree commit diff stats
path: root/tests/accept/run/tbintre2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tbintre2.nim')
-rwxr-xr-xtests/accept/run/tbintre2.nim25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/accept/run/tbintre2.nim b/tests/accept/run/tbintre2.nim
deleted file mode 100755
index e85837dfa..000000000
--- a/tests/accept/run/tbintre2.nim
+++ /dev/null
@@ -1,25 +0,0 @@
-# Same test, but check module boundaries
-
-import tbintree
-
-var
-  root: PBinaryTree[string]
-  x = newNode("hello")
-add(root, x)
-add(root, "world")
-if find(root, "world"):
-  for str in items(root):
-    stdout.write(str)
-else:
-  stdout.writeln("BUG")
-
-var
-  r2: PBinaryTree[int]
-add(r2, newNode(110))
-add(r2, 223)
-add(r2, 99)
-for y in items(r2):
-  stdout.write(y)
-
-#OUT helloworld99110223
-