blob: 9d6e27e046513378554b002338f0b5703d0f2d90 [file] [log] [blame]
// { dg-do assemble }
// Based on a testcase by Martin Bachtold <martinb@coyotesystems.com>
struct foo {
void m();
};
struct bar : foo {
using foo::m;
void m(int);
};
void f() {
bar b;
b.m();
b.m(1);
}