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>
8struct a {
9  int aa; // ERROR - private
10        };
11
12class b : private a {
13        };
14
15class c : public b {
16        int xx(void) { return (aa); }  // aa should be invisible// ERROR - .*
17        };
18
19