aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/pmf3.C
blob: 24753eb1f9a2382c5a399e374761a5e48e7e1691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
struct Fooey {
  void f(char* pX);
  void f(int in);
  void f(float fx);
  void h(double dx);
};

void Fooey::f(char*) { }
void Fooey::f(int) { }
void Fooey::f(float) { }
void Fooey::h(double zahl) { }

int main() {
  Fooey Blah;
  void (Fooey::*pointer)(double);
  pointer = &Fooey::f;		// ERROR - don't call Fooey::h
  (Blah.*pointer)(42.5);
  return 0;
}