aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/scoped1.C
blob: 0fe8d33b6ec51d9ea80b4baf3dfc7d7283de135d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Test that explicitly scoped references to static members work even if
// they belong to an inaccessible base.

struct A
{
  static int i1;
  int i2;
  static void f1 ();
  void f2 ();
};

struct B: private A { };
struct C: public B
{
  void g ()
  {
    ::A::i1 = 1;
    ::A::i2 = 1;		// { dg-error "access" "" }
    ::A::f1 ();
    ::A::f2 ();			// { dg-error "access" "" { xfail *-*-* } }
  }
};