testsuite: powerpc: fix dg-do run typo
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / access8.C
blob0aa85d0457c082a4669f20218f36ca148cd63c3f
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.
6 class inh { 
7         int a;
8 protected:
9         void myf(int);
12 class mel : private inh // { dg-message "" } inaccessible
14 protected:
15         int t;
16         inh::myf;  // { dg-warning "deprecated" }
19 class top_t : protected mel {
20 public:
21         void myf(int);
24 void inh::myf(int i) {
25         a = i;
28 void top_t::myf(int i) {
29         inh::myf(i);            // { dg-error "" } cannot convert to inh
30         mel::myf(i);