summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/access1.C
blob: 0272c7ae1a9097a4ba9cfba8f7232dc2a0a61d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Build don't link: 
// GROUPS passed access-control
class Base
{
protected:
  virtual void DoSomething() = 0;
};

class Fibber : public Base
{
public:
  void DoBP() {
    DoSomething();
  }
};

class Flat : public virtual Fibber
{
public:
  void DoIt() {
    DoSomething();
  }
};