Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / Inputs / crash-preamble-classes.h
bloba8fb5cede05df5bdf4fefb4f0834f9b1e19a4c74
1 struct Incomplete;
3 struct X : Incomplete {
4 X();
5 };
7 struct Y : X {
8 using X::X;
9 };