swig/Examples/test-suite/errors/cpp_using_declaration_overload.i
2022-02-26 20:07:58 +00:00

9 lines
117 B
OpenEdge ABL

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