diff options
Diffstat (limited to 'tests/tnot.nim')
-rwxr-xr-x[-rw-r--r--] | tests/tnot.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tnot.nim b/tests/tnot.nim index f5046849d..cda551654 100644..100755 --- a/tests/tnot.nim +++ b/tests/tnot.nim @@ -6,7 +6,7 @@ proc nodeOfDegree(x: Int): bool = proc main = for j in 0..2: for i in 0..10: - if not nodeOfDegree(1) >= 0: #ERROR + if not nodeOfDegree(1) >= 0: #ERROR_MSG type mismatch Echo "Yes" else: Echo "No" |