1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// PR c++/28588 class Foo { static void f(); // { dg-error "private" } static void f(int); static void g(); // { dg-error "private" } }; void h() { Foo foo; void (*f)(); f = foo.f; // { dg-error "context" } f = foo.g; // { dg-error "context" } }