diff options
Diffstat (limited to 'tests/reject/tnot.nim')
-rwxr-xr-x | tests/reject/tnot.nim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/reject/tnot.nim b/tests/reject/tnot.nim deleted file mode 100755 index 1985ef666..000000000 --- a/tests/reject/tnot.nim +++ /dev/null @@ -1,21 +0,0 @@ -discard """ - file: "system.nim" - errormsg: "type mismatch" -""" -# 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() - - - |