summary refs log tree commit diff stats
path: root/tests/accept/run/tcontinuexc.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tcontinuexc.nim')
-rw-r--r--tests/accept/run/tcontinuexc.nim6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/accept/run/tcontinuexc.nim b/tests/accept/run/tcontinuexc.nim
index 97b190e3c..496ee8164 100644
--- a/tests/accept/run/tcontinuexc.nim
+++ b/tests/accept/run/tcontinuexc.nim
@@ -13,9 +13,11 @@ try:
     try:
       genErrors("error!")
     except ESomething:
-      echo("Error happened")
-    echo "came here"
+      stdout.write("E")
+    stdout.write("C")
     raise newException(EsomeotherErr, "bla")
 finally:  
   echo "caught"
 
+#OUT ECcaught
+