blob: 680bdadaa26ee620e1b80649cfa67510a57084c0 [file] [log] [blame]
// PR c++/60894
struct B
{
struct S {};
};
struct D : B
{
using B::S;
void doIt(struct S&);
};
void D::doIt(struct S&)
{
}