aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p8039.C
blob: 73defeccd97c02874f2f8cc2ccb56a773238d6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// prms-id: 8039

class C {
public:
  int func ();
};

extern void bar(int*);

main()
{
  int (C::*mfp)() = &C::func;
  bar((int*)mfp);		// ERROR - no clear semantics
}