* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / access8.C
blob310b7a01a39ff9fc0afceea9817859020514b4bb
1 // PR c++/29138
3 class A
5 public:
6   int i;
7   class A1
8   {
9     int j;
10   };
13 class B : private A
15 public:
16   A::i; // { dg-warning "deprecated" }
17   A::A1; // { dg-warning "deprecated" }
20 void
21 f ()
23   B b;
24   B::A1 a1;