blob: 1968a7997f4a54709b8cdadff618f02a7e903ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// { dg-do assemble }
// Test for proper diagnostics on trying to take the address of a non-static
// member function.
struct A {
void f ();
void f (int);
void g ();
};
int main ()
{
A a;
&a.f; // { dg-error "" } overloaded
&a.g; // { dg-error "" } can't write a pmf like this
}
|