blob: a685f76e247b640e7736d2b6d2c03762d9360e15 [file] [log] [blame]
// Tests copy constructor
%module overload_copy
#ifndef SWIG_NO_OVERLOAD
%inline %{
class Foo {
public:
Foo() { }
Foo(const Foo &) { }
};
%}
#endif