summary refs log tree commit diff stats
path: root/tests/tnot.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tnot.nim')
-rwxr-xr-xtests/tnot.nim15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/tnot.nim b/tests/tnot.nim
deleted file mode 100755
index cda551654..000000000
--- a/tests/tnot.nim
+++ /dev/null
@@ -1,15 +0,0 @@
-# BUG: following compiles, but should not:
-
-proc nodeOfDegree(x: Int): bool = 
-  result = false
-
-proc main = 
-  for j in 0..2:
-    for i in 0..10:
-      if not nodeOfDegree(1) >= 0: #ERROR_MSG type mismatch
-        Echo "Yes"
-      else:
-        Echo "No"
-
-main()
-