Files

13 lines
127 B
OpenEdge ABL
Raw Permalink Normal View History

// Tests copy constructor
%module overload_copy
%inline %{
class Foo {
public:
Foo() { }
Foo(const Foo &) { }
};
%}