mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 12:29:25 +01:00
12 lines
147 B
ObjectPascal
12 lines
147 B
ObjectPascal
program Test1;
|
|
|
|
type
|
|
ExampleProc = procedure;
|
|
|
|
var
|
|
Eg: ExampleProc;
|
|
|
|
begin
|
|
Eg := nil; { This produces a compiler error }
|
|
end.
|