1234567891011121314151617181920212223242526272829303132 |
- { Old file: tbs0082.pp }
- { Shows incompatibility with BP : Multiple destructors. OK 0.99.1 (FK) }
- Unit tb0075;
- interface
- Type T = OBject
- Constructor Init;
- Destructor Free; virtual;
- Destructor Destroy; virtual;
- end;
- implementation
- constructor T.INit;
- begin
- end;
- Destructor t.Free;
- begin
- end;
- Destructor t.Destroy;
- begin
- end;
- end.
|