tb0099.pp 246 B

1234567891011121314
  1. { Old file: tbs0118.pp }
  2. { Procedural vars cannot be assigned nil ? OK 0.99.6 (FK) }
  3. program Test1;
  4. type
  5. ExampleProc = procedure;
  6. var
  7. Eg: ExampleProc;
  8. begin
  9. Eg := nil; { This produces a compiler error }
  10. end.