blob: 30a3aab1992ace3e6feea7ab043c89efede43988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// { dg-do assemble }
// PRMS Id: 4484 (bug 3)
// Bug: g++ does implicitly take the address of methods passed to fns.
struct A {
void f ();
};
void g (void (A::*)());
void h () {
g (A::f); // { dg-error "" } failed conversion to method pointer
}
|