Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array3.C
blob4140cd92d7b50e36a6984f0471053cd9f1eb1939
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   // Not ambiguous since CWG 1307.
10   composite({0,1});