aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net26.C
blob: 753c5f6cd2bfa4a7590e7cb87ec05f5d65e42177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// A test case found by InterViews testing...

extern "C" int printf(const char *, ...);

class A {
public:
	int foo() { printf("ok nv\n"); }
	virtual int vfoo() { printf("ok v\n"); }
};

struct S {
	int (A::*pfn1)();
	int (A::*pfn2)();
	int (A::*pfn3)();
};

// This failed before.
S s = { &A::foo, &A::vfoo, &A::foo };

A a;

int main() {
  (a.*s.pfn1)();
  (a.*s.pfn2)();
  printf("PASS\n");
  return 0;
}