ReactOS 0.4.15-dev-8002-gbbb3b00
nesttry.cxx
Go to the documentation of this file.
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for
3// full license information.
4
5#include <stdio.h>
6
7class A
8{
9 public:
10 A(){printf("In A()\n");}
11 ~A(){printf("In ~A()\n");}
12};
13
14void foo()
15{
16 printf("Throwing\n");
17 throw 1;
18}
19
20int main()
21{
22 try{
23 try{
24 A a;
25 foo();
26 goto Label;
27 }catch(...){
28 printf("In first catch\nDoing new throw\n");
29 throw 2;
30 goto Label;
31 }
32 }catch(...){
33 printf("In outer catch\n");
34 }
35 printf("End\n");
36Label:;
37}
38
PWCHAR Label
Definition: format.c:70
Definition: ehthrow.cxx:93
A()
Definition: nesttry.cxx:10
~A()
Definition: nesttry.cxx:11
#define printf
Definition: freeldr.h:97
#define a
Definition: ke_i.h:78
void foo()
Definition: nesttry.cxx:14
int main()
Definition: nesttry.cxx:20