* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array2.C
blob1e25eb2202da1a7c2e0a84488292de0ab451a40b
1 // { dg-do compile { target c++11 } }
3 typedef int IA[2];
4 typedef double DA[2];
6 void f(const IA&) { }
7 void f(const DA&);
9 int main()
11   f({1,2});