tw2065.pp 350 B

1234567891011121314151617181920212223
  1. { Source provided for Free Pascal Bug Report 2065 }
  2. { Submitted by "Lavergne Thomas" on 2002-08-01 }
  3. { e-mail: [email protected] }
  4. program test;
  5. {$APPTYPE CONSOLE}
  6. {$LONGSTRINGS ON}
  7. type
  8. TRec = record
  9. S: string;
  10. P: Pointer;
  11. end;
  12. const
  13. MAX_SIZE = 2;
  14. var
  15. A: array[0..MAX_SIZE - 1] of TRec;
  16. begin
  17. WriteLn(A[0].S);
  18. end.