blob: 572cea28142770335ce7de147e81b92798828238 [file] [log] [blame]
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +00001// Header for PCH test cxx-using.cpp
2
3
4
5
6
7
8struct B {
9 void f(char c);
10};
11
12struct D : B
13{
14 using B::f;
15 void f(int);
16};