summaryrefslogtreecommitdiff
path: root/trunk/Examples/test-suite/constructor_explicit.i
blob: 5f4c83cc0c12019eae25d40e270ae983c3c2856e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Swig 1.3.6 fails to understand the "explicit" keyword.
   SF Bug #445233, reported by Krzysztof Kozminski
   <kozminski@users.sf.net>. 
*/

%module constructor_explicit
%inline %{

class Foo {
public:
   explicit Foo() { }
   explicit Foo(int) {};
};

Foo test(Foo x) {
   return x;
}

%}