Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / visibility12.C
blob6b7ff75d2caf3a655ff36318753de5967bf0a668
1 // { dg-do assemble  }
2 // GROUPS passed visibility
3 // visibility file
4 // From: Mark Rawling <Mark.Rawling@mel.dit.csiro.au>
5 // Date:     Wed, 30 Jun 93 15:28:34 +1000
6 // Subject:  member access rule bug
7 // Message-ID: <9306300528.AA17185@coda.mel.dit.CSIRO.AU>
8 struct a {
9   int aa; 
10         };
12 class b : private a // { dg-message "" } private
16 class c : public b {
17         int xx(void) { return (aa); }  // aa should be invisible// { dg-error "" } .*
18         };