tw2397.pp 251 B

1234567891011
  1. { Source provided for Free Pascal Bug Report 2397 }
  2. { Submitted by "Yakov Sudeikin" on 2003-02-23 }
  3. { e-mail: [email protected] }
  4. {$mode delphi}
  5. var
  6. a: array of string = nil; //Only works in Delphi
  7. begin
  8. a := nil; //works in FPC and Delphi
  9. end.