Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
access13.C
blob: a891aeaad83e3b3580fbda30d5d4654f742bec1e [
file
] [
log
] [
blame
]
// { dg-do assemble }
// PRMS Id: 4955
struct
A
{
protected
:
int
i
;
void
f
();
};
struct
B
:
public
A
{
void
g
()
{
this
->
A
::
i
=
1
;
// { dg-bogus "" } access control failure
this
->
A
::
f
();
// { dg-bogus "" } access control failure
}
};