1 // PR c++/93712 - ICE with ill-formed array list-initialization.
2 // { dg-do compile { target c++11 } }
3 
4 int f (const int (&)[2]);
5 
g()6 int g ()
7 {
8   const int (&r)[2] = {1, "foo"}; // { dg-error "conversion" }
9   return f({1, "foo"}); // { dg-error "conversion" }
10 }
11