aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/lookup4.C
blob: 8fa29689287c3109fb84e454828ebed9d59995ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do run  }
// 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);
}