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