aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/access6.C
blob: 33d5090585491132cd922fc774017460c1000f9b (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
// { dg-do compile }

// Origin: David Baron <dbaron@fas.harvard.edu>

// PR c++/3765: Changing access from public to private by member
// using declaration.

class A
{
  public:
    int foo() { return 1; }	// { dg-error "inaccessible" }
};

class B : public A
{
  private:
    using A::foo;
};

int main()
{
  B b;
  return b.foo();		// { dg-error "this context" }
}