Files
ANSLibs/swig-4.3.0/Examples/test-suite/errors/cpp_using_declaration_overload.i

10 lines
117 B
OpenEdge ABL
Raw Normal View History

%module xxx
struct Base {
void m(bool) {}
};
struct Derived : Base {
void m(bool) const {}
using Base::m;
};