blob: 35c34ec6a99e4bf73f78058e89a90d4cee8d8f46 [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-error "must name" }
public:
A();
};
class B : public A {
void bar() {
A a;
void (A::*pmf)() = &A::foo; // { dg-error "protected member" }
(a.*pmf)();
}
};