diff options
Diffstat (limited to 'tests/accept/run/tnestprc.nim')
-rwxr-xr-x | tests/accept/run/tnestprc.nim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/accept/run/tnestprc.nim b/tests/accept/run/tnestprc.nim index b7326e032..c10ad6abf 100755 --- a/tests/accept/run/tnestprc.nim +++ b/tests/accept/run/tnestprc.nim @@ -1,3 +1,7 @@ +discard """ + file: "tnestprc.nim" + output: "10" +""" # Test nested procs without closures proc Add3(x: int): int = @@ -8,3 +12,5 @@ proc Add3(x: int): int = echo Add3(7) #OUT 10 + + |