1*f4a2713aSLionel Sambuc // Header for PCH test cxx-using.cpp 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc struct B { 9*f4a2713aSLionel Sambuc void f(char c); 10*f4a2713aSLionel Sambuc }; 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc struct D : B 13*f4a2713aSLionel Sambuc { 14*f4a2713aSLionel Sambuc using B::f; 15*f4a2713aSLionel Sambuc void f(int); 16*f4a2713aSLionel Sambuc }; 17