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 |
|
---|
3 | int fail = 1;
|
---|
4 | void ok() { fail = 0; }
|
---|
5 |
|
---|
6 | class TC {
|
---|
7 | int s_;
|
---|
8 | };
|
---|
9 |
|
---|
10 | class TIRD {
|
---|
11 | public:
|
---|
12 | void (*itc)();
|
---|
13 | TIRD() { itc = ok; }
|
---|
14 | };
|
---|
15 |
|
---|
16 | class TCCB : public TC, public TIRD {
|
---|
17 | };
|
---|
18 |
|
---|
19 | class TCRCB : public TCCB {
|
---|
20 | public:
|
---|
21 | virtual void eat ();
|
---|
22 | };
|
---|
23 |
|
---|
24 | void TCRCB::eat () {
|
---|
25 | void *vp = (TIRD*)this->itc;
|
---|
26 | this->itc();
|
---|
27 | }
|
---|
28 |
|
---|
29 | int main() {
|
---|
30 | TCRCB a;
|
---|
31 | a.eat();
|
---|
32 | return fail;
|
---|
33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.