1 // PR c++/34914
2 // { dg-do compile }
3 
4 struct A { int __attribute ((vector_size (8))) x; };
5 
6 void
foo()7 foo ()
8 {
9   __attribute ((vector_size (8))) int A::*p;
10   p == 0;
11 }
12