// C++ PR/2521 // Copyright (C) 2002 Free Software Foundation // Contributed by Gabriel Dos Reis // { dg-do compile } struct A { void f(); void foo(void (A::*)(int)); // { dg-message "void A::foo|no known conversion" "" } template void g(T); void h() { void (A::*p)() = &A::f; void (A::*q)() = &(A::f); // { dg-error "parenthesized" "" } foo(&g); // { dg-error "no matching" "" } // { dg-message "candidate" "candidate note" { target *-*-* } 17 } } };