aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup4.C
blob: 59b7a75b2bdfdaadf85746923e80fed60c125e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Test for proper handling of references to overloaded member functions.

struct A {
  static void f (int) { }
  void f ();
};

void (*p)(int) = &A::f;

void A::f ()
{
  p = f;
}

int main()
{
  A a;
  p = &a.f;
  (a.f)();
  (a.f)(42);
}