mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
15 lines
263 B
ObjectPascal
15 lines
263 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 2996 }
|
|
{ Submitted by "Michalis Kamburelis" on 2004-02-29 }
|
|
{ e-mail: michalis@camelot.homedns.org }
|
|
{$mode DELPHI}
|
|
|
|
type
|
|
TSomeProc = procedure(i:Integer);
|
|
|
|
var P:TSomeProc;
|
|
begin
|
|
if P = nil then ;
|
|
end.
|