summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/access13.C
blob: a891aeaad83e3b3580fbda30d5d4654f742bec1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }
// PRMS Id: 4955

struct A {
 protected:
  int i;
  void f ();
};

struct B: public A {
  void g () {
    this->A::i = 1;		// { dg-bogus "" } access control failure
    this->A::f();		// { dg-bogus "" } access control failure
  }
};