Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
conversion
/
const2.C
blob: cedd35518737c0fd4f90da0ae5b593e70f4232df [
file
] [
log
] [
blame
]
struct
B
{};
struct
D
:
public
B
{};
typedef
int
B
::*
bm
;
typedef
int
D
::*
dm
;
bm bp
;
void
f
()
{
const_cast
<dm>
(
bp
);
// { dg-error "3:invalid .const_cast." }
}