1 // PR c++/52742 2 // { dg-do compile { target c++11 } } 3 foo()4 void foo() { 5 new int[1] {1}; 6 } 7 8 template<int A> goo()9 void goo() { 10 new int[1] {1}; 11 } 12 main()13 int main() { 14 foo(); 15 goo<1>(); 16 } 17