blob: de177c91d217e94049f1f67cca951f25aa87b930 [file]
// PR c++/51889
struct A {
void f();
};
template <class T>
struct B: A
{
using A::f;
void f();
};