blob: 5f4c83cc0c12019eae25d40e270ae983c3c2856e [file] [log] [blame]
/* 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;
}
%}