aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/access4.C
blob: d3870bd3497f4d19c2a8088a74c8867a4409f9b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do compile }

// Origin: Mike Reed <mike.reed@amadron.com>

// PR c++/11174: Access checking of pointer-to-member function

class A {
protected:
  void foo() {}			// { dg-error "protected" }
public:
  A();
};

class B : public A {
  void bar() {
    A a;
    void (A::*pmf)() = &A::foo;	// { dg-error "this context" }
    (a.*pmf)();
  }
};