[AMDGPU] Removed superfluous predicate. NFC.
[llvm-project.git] / clang / test / PCH / cxx-using.h
blob572cea28142770335ce7de147e81b92798828238
1 // Header for PCH test cxx-using.cpp
8 struct B {
9 void f(char c);
12 struct D : B
14 using B::f;
15 void f(int);