brintos

brintos / llvm-project-archived public Read only

0
0
Text · 83 B · f75b559 Raw
4 lines · c
1struct A { ~A() throw(int); };2struct B { A a; };3inline void f(B *p) { p->~B(); }4