tw11295a.pp 271 B

123456789101112131415161718192021
  1. { %fail }
  2. program IntfDel;
  3. {$ifdef fpc}
  4. {$mode objfpc}
  5. {$endif fpc}
  6. uses
  7. Classes;
  8. type
  9. IA = interface
  10. end;
  11. TA = class(TObject, IA, IUnknown)
  12. private
  13. FUnknown: IUnknown;
  14. property Unknown: IUnknown read FUnknown implements IUnknown;
  15. end;
  16. begin
  17. end.