blob: 9ec633f3fde58db7541c30a1936ac88d162e1eaa [file] [log] [blame]
%module xxx
struct Base {
void m(bool) {}
};
struct Derived : Base {
void m(bool) const {}
using Base::m;
};