blob: eb0fd559c4de12ee6d329829df5ba04b66407357 [file] [log] [blame]
// PR c++/85437
// { dg-do compile { target c++11 } }
struct A { int y; };
struct B { int x; };
struct C : A, B {};
constexpr int C::*pci = &B::x;
constexpr int A::*pai = static_cast<int A::*>(static_cast<int C::*>(&B::x)); // { dg-bogus "not a constant expression" }