Clang Project

clang_source_code/test/Modules/Inputs/update-exception-spec/b.h
1struct A { ~A() throw(int); };
2struct B { A a; };
3inline void f(B *p) { p->~B(); }
4