1 // { dg-do compile }
2 // { dg-options "-std=gnu++11" }
3 
4 typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
5 constexpr V4 v = { 1, 1, 1, 0 };
6 constexpr V4 r = v[0] + v; // { dg-bogus "not a constant expression" "" { xfail *-*-* } }
7