diff options
Diffstat (limited to 'tests/exception/tfinally.nim')
-rw-r--r-- | tests/exception/tfinally.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/exception/tfinally.nim b/tests/exception/tfinally.nim index 16fb3e7da..aa469d9c0 100644 --- a/tests/exception/tfinally.nim +++ b/tests/exception/tfinally.nim @@ -4,14 +4,14 @@ discard """ """ # Test return in try statement: -proc main: int = +proc main: int = try: try: return 1 finally: echo("came") return 2 - finally: + finally: echo("here") return 3 |