aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/visibility4.C
blob: 5a92c6c079410e0bf9da4fa7ca6b5255b9f97865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Build don't link: 
// GROUPS passed visibility
// visibility file
// From: dcb@us-es.sel.de (David Binderman 3841)
// Date:     Tue, 30 Mar 93 15:48:47 +0200
// Subject:  page 242 of the ARM
// Message-ID: <9303301348.AA20751@slsvitt>

class A {
public:
        int b;
};

class C : private A {                   // NOTE WELL. private, not public
public:
        int d;
};

extern "C" int printf( const char *, ...);

class E : public C {
        void f() {
                printf( "%d\n", b);// ERROR - .*
        };
};