summary refs log tree commit diff stats
path: root/tests/exception/tcontinuexc.nim
blob: f618abc14adf23121df81023793edb761f044d5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
discard """
  file: "tcontinuexc.nim"
  outputsub: "ECcaught"
  exitcode: "1"
"""
type
  ESomething = object of E_Base
  ESomeOtherErr = object of E_Base

proc genErrors(s: string) =
  if s == "error!":
    raise newException(ESomething, "Test")
  else:
    raise newException(EsomeotherErr, "bla")

try:
  for i in 0..3:
    try:
      genErrors("error!")
    except ESomething:
      stdout.write("E")
    stdout.write("C")
    raise newException(EsomeotherErr, "bla")
finally:  
  echo "caught"

#OUT ECcaught