swig/Examples/test-suite/errors/cpp_using_declaration_overl...

10 lines
117 B
OpenEdge ABL

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