PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-60432.C
blob37d78d31a338cca6cf9c4fa66da57d5ee7fac2d3
1 // PR c++/60432
2 // { dg-do compile { target c++11 } }
4 struct A
6   int a;
7   static constexpr int A::*p = &A::a;
8 };