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 >
Wrap
Text File
|
2006-03-05
|
225b
|
16 lines
(* This program tests the "Pointer is NIL" error. *)
program is
type R is record f: integer; end;
var p: R := nil;
i: integer := 0;
begin
write ("Should cause a pointer-is-nil message...");
i := p.f;
end;