1 // PR c++/60432
2 // { dg-do compile { target c++11 } }
3 
4 struct A
5 {
6   int a;
7   static constexpr int A::*p = &A::a;
8 };
9