Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[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 };