Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
conv4.C
blob: c195e41d6248e6b0b39b3a406e0e99d50b188baf [
file
] [
log
] [
blame
]
// { dg-do run }
// Testcase for proper hiding of base conversion ops.
struct
A
{
operator
const
char
*();
};
struct
B
:
public
A
{
operator
const
char
*()
{
return
0
;
}
};
int
main
(
void
)
{
B b
;
const
char
*
p
=
b
;
}