diff options
Diffstat (limited to 'tests/accept/run/tnestprc.nim')
-rwxr-xr-x | tests/accept/run/tnestprc.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/accept/run/tnestprc.nim b/tests/accept/run/tnestprc.nim deleted file mode 100755 index b7326e032..000000000 --- a/tests/accept/run/tnestprc.nim +++ /dev/null @@ -1,10 +0,0 @@ -# Test nested procs without closures - -proc Add3(x: int): int = - proc add(x, y: int): int {.noconv.} = - result = x + y - - result = add(x, 3) - -echo Add3(7) #OUT 10 - |