summaryrefslogtreecommitdiff
path: root/Examples/test-suite/overload_copy.i
blob: 238d011a6a9bd7654428ae33471a2e9d11d0431e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Tests copy constructor
%module overload_copy

%inline %{

class Foo {
public:
    Foo() { }
    Foo(const Foo &) { }
};

%}