aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/const4.C
blob: b8b8efa0ae608f6a33893874dd61f74487081355 (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
// PRMS Id: 8927
// Bug: complex inheritance interferes with const checking

class GrandParent {
public:
  virtual void DoIt();
protected:
  int A;
};

class Parent : virtual public GrandParent {
public:
  virtual void DoX() const;
};

class Child : public Parent {
public:
  void DoX() const;
};

void Child::DoX() const
{
  A = 10;		// ERROR - assignment to const
}