xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/cxx-using.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // Header for PCH test cxx-using.cpp
2 
3 
4 
5 
6 
7 
8 struct B {
9     void f(char c);
10 };
11 
12 struct D : B
13 {
14     using B::f;
15     void f(int);
16 };
17