blob: 572cea28142770335ce7de147e81b92798828238 [file] [log] [blame]
// Header for PCH test cxx-using.cpp
struct B {
void f(char c);
};
struct D : B
{
using B::f;
void f(int);
};