1 // Test for proper non-deduced context handling of the initializer
2 // for an auto declaration/new.
3 // { dg-do compile { target c++11 } }
8 void apply(const double&){}
11 auto p = &with_apply::apply<0>;
12 auto pp = new auto(&with_apply::apply<0>);
17 auto p = &T::template apply<0>;
20 template void f<with_apply>();