(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
pr85437-4.C
// 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" }