aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/visibility26.C
blob: 54fc43e2053bce861f0f28f086832d8982563f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Build don't link: 
// GROUPS passed visibility
// visibility file
// From: jamshid@ses.com (Jamshid Afshar)
// Date:     Sun, 12 Dec 93 03:09:15 CST
// Subject:  Missed access declaration error
// Message-ID: <9312120909.AA22135@ses.com>

class X {
  public:
    void f();
};

class Y : private X {
  public:
    void f(int);// ERROR -    because.*
    X::f;  // g++ 2.5.5 doesn't flag this misuse
};// ERROR -  cannot adjust.*