1 // { dg-do compile { target c++11 } }
2 
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;
6