// Build don't link: // Special g++ 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;