aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/const4.C
blob: d29c46b74255cb3bc49d8460fcef8eaac801e445 (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
// { dg-do assemble  }
// 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;		// { dg-error "" } assignment to const
}