Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
cast7.C
blob: 4f433f424a3c952f008cc8b3f7d5b6f69fede156 [
file
] [
log
] [
blame
]
// { dg-do run }
// Test that we can add cv-quals in a static cast to a pointer-to-base type.
struct
A
{
int
i
;
};
struct
B
:
public
A
{};
int
main
()
{
int
B
::*
bp
=
&
B
::
i
;
const
int
A
::*
ap
=
static_cast
<
const
int
A
::*>(
bp
);
return
ap
!=
bp
;
}