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
/
alloc1.pcat
< prev
next >
Wrap
Text File
|
2006-03-05
|
291b
|
17 lines
(* This program tests IRallocate, IRloadIndirect, and IRstore. *)
program is
type R is record f: integer; end;
var p: R := nil;
begin
write ("Testing IRallocate, IRstore...");
p := R {f := 123};
write ("Testing IRloadIndirect...");
write ("Should print 123...", p.f);
end;