tw2996.pp 263 B

1234567891011121314
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 2996 }
  3. { Submitted by "Michalis Kamburelis" on 2004-02-29 }
  4. { e-mail: [email protected] }
  5. {$mode DELPHI}
  6. type
  7. TSomeProc = procedure(i:Integer);
  8. var P:TSomeProc;
  9. begin
  10. if P = nil then ;
  11. end.