(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
initlist-array2.C
// { dg-do compile { target c++11 } }

typedef int IA[2];
typedef double DA[2];

void f(const IA&) { }
void f(const DA&);

int main()
{
  f({1,2});
}