4404d8ad95d18eeacd51c5c792845a7e773268e4
[gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / access8.C
1 // { dg-do assemble }
2 // From: smidt@dd.chalmers.se (Peter Smidt)
3 // Date: 25 Jan 1994 23:41:33 -0500
4 // Bug: g++ forgets access decls after the definition.
5
6 class inh { // { dg-message "" } inaccessible
7 int a;
8 protected:
9 void myf(int);
10 };
11
12 class mel : private inh {
13 protected:
14 int t;
15 inh::myf; // { dg-warning "deprecated" }
16 };
17
18 class top_t : protected mel {
19 public:
20 void myf(int);
21 };
22
23 void inh::myf(int i) {
24 a = i;
25 }
26
27 void top_t::myf(int i) {
28 inh::myf(i); // { dg-error "" } cannot convert to inh
29 mel::myf(i);
30 }