blob: 238d011a6a9bd7654428ae33471a2e9d11d0431e [file] [log] [blame]
// Tests copy constructor
%module overload_copy
%inline %{
class Foo {
public:
Foo() { }
Foo(const Foo &) { }
};
%}