// { dg-do assemble } // { dg-options "" } template struct A { A (); ~A(); int x, y, z; }; template inline A::A () { x = y = 3; z = 99; } template inline A::~A() { y = 9999; } A ai;