* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr52742.C
blobf4d3dec9689a4f093bfdefb5b82f8408074622c3
1 // PR c++/52742
2 // { dg-do compile { target c++11 } }
4 void foo() {
5   new int[1] {1};
8 template<int A>
9 void goo() {
10   new int[1] {1};
13 int main() {
14   foo();
15   goo<1>();