blob: 310b7a01a39ff9fc0afceea9817859020514b4bb [file] [log] [blame]
// PR c++/29138
class A
{
public:
int i;
class A1
{
int j;
};
};
class B : private A
{
public:
A::i; // { dg-warning "deprecated" }
A::A1; // { dg-warning "deprecated" }
};
void
f ()
{
B b;
B::A1 a1;
}