blob: 57f8a11a232d62a3b1b46e6e44f5afbd25dac3ee [file] [log] [blame]
// { 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-message "protected" }
public:
A();
};
class B : public A {
void bar() {
A a;
void (A::*pmf)() = &A::foo; // { dg-error "this context" }
(a.*pmf)();
}
};