mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
19 lines
217 B
Nim
19 lines
217 B
Nim
discard """
|
|
file: "tfinally3.nim"
|
|
output: "false"
|
|
"""
|
|
# Test break in try statement:
|
|
|
|
proc main: bool =
|
|
while true:
|
|
try:
|
|
return true
|
|
finally:
|
|
break
|
|
return false
|
|
|
|
echo main() #OUT false
|
|
|
|
|
|
|