* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-53094-1.C
blobc90fc765e1b1e0fb693f62e0d3c386992fac4ff0
1 // { dg-do compile { target c++11 } }
3 typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
4 constexpr V4 v = { 1, 1, 1, 0 };
5 constexpr V4 r = v[0] + v;