1 // { dg-do compile { target c++11 } }
2 
3 typedef int IA[2];
4 typedef double DA[2];
5 
f(const IA &)6 void f(const IA&) { }
7 void f(const DA&);
8 
main()9 int main()
10 {
11   f({1,2});
12 }
13