C++程序  |  4行  |  83 B

struct A { ~A() throw(int); };
struct B { A a; };
inline void f(B *p) { p->~B(); }