mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:28:04 +02: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.
|