* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-vect.C
blob80a2fbb63fa3793992d4fc319789c4a9cb28b7d0
1 // { dg-do compile { target c++11 } }
3 typedef float X __attribute__ ((vector_size (4 * sizeof (float))));
5 X x;
6 X x2{x};