mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 19:07:59 +02:00
15 lines
246 B
ObjectPascal
15 lines
246 B
ObjectPascal
{ Old file: tbs0118.pp }
|
|
{ Procedural vars cannot be assigned nil ? OK 0.99.6 (FK) }
|
|
|
|
program Test1;
|
|
|
|
type
|
|
ExampleProc = procedure;
|
|
|
|
var
|
|
Eg: ExampleProc;
|
|
|
|
begin
|
|
Eg := nil; { This produces a compiler error }
|
|
end.
|