12 lines
127 B
OpenEdge ABL
12 lines
127 B
OpenEdge ABL
// Tests copy constructor
|
|
%module overload_copy
|
|
|
|
%inline %{
|
|
|
|
class Foo {
|
|
public:
|
|
Foo() { }
|
|
Foo(const Foo &) { }
|
|
};
|
|
|
|
%}
|