PR c++/85437
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr85437-3.C
blobeb0fd559c4de12ee6d329829df5ba04b66407357
1 // PR c++/85437
2 // { dg-do compile { target c++11 } }
4 struct A { int y; };
5 struct B { int x; };
6 struct C : A, B {};
7 constexpr int C::*pci = &B::x;
8 constexpr int A::*pai = static_cast<int A::*>(static_cast<int C::*>(&B::x)); // { dg-bogus "not a constant expression" }