diff options
Diffstat (limited to 'tests/tstrange.nim')
-rwxr-xr-x | tests/tstrange.nim | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/tstrange.nim b/tests/tstrange.nim deleted file mode 100755 index 13aab2302..000000000 --- a/tests/tstrange.nim +++ /dev/null @@ -1,17 +0,0 @@ -# test for extremely strange bug - -proc ack(x: int, y: int): int = - if x != 0: - if y != 5: - return y - return x - return x+y - -proc gen[T](a: T) = - write(stdout, a) - - -gen("hallo") -write(stdout, ack(5, 4)) -#OUT hallo4 - |