aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/constructor_exception.i
blob: 9904e4e1ed83fb24334bfc15319797c870028915 (plain)
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
%module constructor_exception

%inline %{
class Error {
};

class Object {
public:
   Object(int x) {
       if (x < 0) {
           throw Error();
       }
   }
};

class Test {
  Object o;
public:
  Test(int x) try : o(x) { }
  catch (Error &e) {
  } 
  catch (int y) {
  }
  catch (...) {
  }
};
%}