diff options
Diffstat (limited to 'tests/accept/run/toverl2.nim')
-rwxr-xr-x | tests/accept/run/toverl2.nim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/accept/run/toverl2.nim b/tests/accept/run/toverl2.nim deleted file mode 100755 index 2d1225c6f..000000000 --- a/tests/accept/run/toverl2.nim +++ /dev/null @@ -1,21 +0,0 @@ -# Test new overloading resolution rules - -import strutils - -proc toverl2(x: int): string = return $x -proc toverl2(x: bool): string = return $x - -iterator toverl2(x: int): int = - var res = 0 - while res < x: - yield res - inc(res) - -var - pp: proc (x: bool): string = toverl2 -stdout.write(pp(true)) -for x in toverl2(3): - stdout.write(toverl2(x)) -stdout.write("\n") -#OUT true012 - |