Files
Nim/tests/exception/texceptionbreak.nim
2015-04-27 23:11:59 +02:00

46 lines
616 B
Nim

discard """
file: "tnestedbreak.nim"
output: "1\n2\n3\n4"
"""
# First variety
try:
raise newException(OSError, "Problem")
except OSError:
for y in [1, 2, 3]:
discard
try:
discard
except OSError:
discard
echo "1"
# Second Variety
try:
raise newException(OSError, "Problem")
except OSError:
for y in [1, 2, 3]:
discard
for y in [1, 2, 3]:
discard
echo "2"
# Third Variety
try:
raise newException(OSError, "Problem")
except OSError:
block:
break
echo "3"
# Fourth Variety
block:
try:
raise newException(OSError, "Problem")
except OSError:
break
echo "4"