home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p11 / tst / error2.pcat < prev    next >
Text File  |  2006-03-05  |  225b  |  16 lines

  1. (* This program tests the "Pointer is NIL" error. *)
  2.  
  3. program is
  4.  
  5.   type R is record f: integer; end;
  6.   var p: R := nil;
  7.       i: integer := 0;
  8.  
  9. begin
  10.  
  11.   write ("Should cause a pointer-is-nil message...");
  12.   i := p.f;
  13.  
  14. end;
  15.  
  16.