* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array3.C
blob1a94f4ed55b3416cd6b25fdb394fa06a5668b1c2
1 // PR c++/52743
2 // { dg-do compile { target c++11 } }
4 void composite (int const (&) [2]);
5 void composite (int const (&) [3]);
7 int main ()
9   composite({0,1});             // { dg-error "ambiguous" }