Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
access11.C
blob: dd30e26fab6e931cd65578c67b0a1ed6f8f2d434 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// PRMS Id: 4900
// Bug: g++ doesn't apply access control uniformly to type conversion operators
struct
A
{
protected
:
operator
int
*
()
const
;
};
struct
B
:
public
A
{
int
*
foo
()
{
return
A
::
operator
int
*();
}
};