[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / PCH / Inputs / cxx-method.h
blobd5d56fed0585e24af2316a30d3034ca9815f2b73
1 struct S {
2 void m(int x);
4 S();
5 S(const S&);
7 operator const char*();
8 operator char*();
9 };