Files
ANSLibs/swig-4.3.0/Examples/test-suite/defvalue_constructor.i

15 lines
158 B
OpenEdge ABL
Raw Normal View History

%module defvalue_constructor
%inline %{
namespace Foo {
class Bar {};
class Baz {
public:
Baz(Bar b = Bar()) {}
};
}
%}