// Test for proper non-deduced context handling of the initializer// for an auto declaration/new.// { dg-options -std=c++0x }structwith_apply{template<unsigned>voidapply(constdouble&){}};autop=&with_apply::apply<0>;autopp=newauto(&with_apply::apply<0>);template<classT>voidf(){autop=&T::templateapply<0>;}templatevoidf<with_apply>();