Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr85437-4.C
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" }