Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / update-exception-spec / b.h
blobf75b559bee43aafc1683a5057c718c4cef1d2b38
1 struct A { ~A() throw(int); };
2 struct B { A a; };
3 inline void f(B *p) { p->~B(); }