Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
duperr1.C
blob: 78f66a9ae6fd45d41c6ea69579f3475dcdebb409 [
file
] [
log
] [
blame
]
// PR c++/29048
class
A
{
int
i
;
};
// { dg-bogus "is private.*is private" }
// { dg-message "private" "" { target *-*-* } .-1 }
class
B
:
public
A
{
B
()
{
A
::
i
=
0
;
}
};
// { dg-error "within this context" }