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