source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.mike/p10148.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 374 bytes
Line 
1// prms-id: 10148
2
3int fail = 1;
4void ok() { fail = 0; }
5
6class TC {
7 int s_;
8};
9
10class TIRD {
11 public:
12 void (*itc)();
13 TIRD() { itc = ok; }
14};
15
16class TCCB : public TC, public TIRD {
17};
18
19class TCRCB : public TCCB {
20public:
21 virtual void eat ();
22};
23
24void TCRCB::eat () {
25 void *vp = (TIRD*)this->itc;
26 this->itc();
27}
28
29int main() {
30 TCRCB a;
31 a.eat();
32 return fail;
33}
Note: See TracBrowser for help on using the repository browser.