Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
visibility7.C
blob: f7bf00c1a722a107edf7e1706ad3c8e16400f362 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// GROUPS passed visibility
class
X
{
public
:
void
fn
();
// { dg-error "" } .*
};
class
Y
:
private
X
{};
class
Unrelated
{
public
:
void
foo
()
{
Y y
;
y
.
fn
();
}
// { dg-error "" } .*
};