OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.law / visibility12.C
1 // Build don't link: 
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         };
11
12 class b : private a {
13         };
14
15 class c : public b {
16         int xx(void) { return (aa); }  // aa should be invisible// ERROR - .*
17         };
18