summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/g++.old-deja/g++.other/pmf7.C
blob: e33ee2c8e5c6deb4e16d55dfe67d42ebc08badf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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;				// ERROR - overloaded
  &a.g;				// ERROR - can't write a pmf like this
}
OpenPOWER on IntegriCloud