DEBSOURCES
Skip Quicknav
sources / swig / 4.1.0-0.2 / Examples / test-suite / errors / cpp_using_declaration_overload.i
123456789
%module xxx struct Base { void m(bool) {} }; struct Derived : Base { void m(bool) const {} using Base::m; };