Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Import / expr-with-cleanups / Inputs / S.cpp
blob7b69f48f681e34a69649a69dd385d66bed4187e5
1 struct RAII {
2 int i = 0;
3 RAII() { i++; }
4 ~RAII() { i--; }
5 };
6 void f() {
7 RAII();