aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p7626.C
blob: 61636d61fdb604ab90a175ebcba4f63b6d4e373a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Build don't link:
// prms-id: 7626

int fail;

typedef unsigned int UINT;

class CObject{};

class CCmdTarget : public CObject {
};

typedef void (CCmdTarget::*AFX_PMSG)(void);

struct AFX_MSGMAP_ENTRY {
  AFX_PMSG pfn;     
};

class CWnd : public CCmdTarget {
public:
  void OnMyMsg() { fail  = 1; }		// If this one is called, something is wrong.
  static AFX_MSGMAP_ENTRY _messageEntries[];
};

typedef void (CWnd::*AFX_PMSGW)(void);

class CDialog : public CWnd
{
public:
  void OnMyMsg() { }
  static AFX_MSGMAP_ENTRY _messageEntries[];
};

AFX_MSGMAP_ENTRY  CDialog ::_messageEntries[] = { 
  { (AFX_PMSG)(AFX_PMSGW)(void (CWnd::*)())&CDialog::OnMyMsg }, 
  { (AFX_PMSG)0 }
}; 

main() {
  CDialog d;
  (d.*((CDialog::_messageEntries)[0]).pfn)();	// This should call CDialog::OnMyMsg
  return fail;
}