// { dg-do assemble } class OBJECT { int a; }; template class TESTA { public: TESTA(); T foo(int i) {T t = 0; return t;} }; void foo() { TESTA *foo; foo = new TESTA; }