blob: 4140cd92d7b50e36a6984f0471053cd9f1eb1939 [file] [log] [blame]
// PR c++/52743
// { dg-do compile { target c++11 } }
void composite (int const (&) [2]);
void composite (int const (&) [3]);
int main ()
{
// Not ambiguous since CWG 1307.
composite({0,1});
}