tw1316.pp 196 B

12345678910111213141516171819
  1. { %FAIL }
  2. unit tw1316;
  3. interface
  4. type
  5. searchrec=record
  6. l : longint;
  7. end;
  8. operator [] (a,b:searchrec) r:boolean;
  9. implementation
  10. operator [] (a,b:searchrec) r:boolean;
  11. begin
  12. end;
  13. end.