tw13971a.pp 249 B

12345678910111213141516171819
  1. { %fail }
  2. {$ifdef fpc}
  3. {$mode objfpc}
  4. {$endif}
  5. type
  6. tc = class
  7. function getx(i: longint): longint;
  8. property prop[i: longint]: longint read getx;
  9. default: longint;
  10. end;
  11. function tc.getx(i: longint): longint;
  12. begin
  13. end;
  14. begin
  15. end.