4 lines
83 B
C
4 lines
83 B
C
|
struct A { ~A() throw(int); };
|
||
|
struct B { A a; };
|
||
|
inline void f(B *p) { p->~B(); }
|