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 >
Text File  |  2006-03-05  |  291b  |  17 lines

  1. (* This program tests IRallocate, IRloadIndirect, and IRstore. *)
  2.  
  3. program is
  4.  
  5.   type R is record f: integer; end;
  6.   var p: R := nil;
  7.  
  8. begin
  9.  
  10.   write ("Testing IRallocate, IRstore...");
  11.   p := R {f := 123};
  12.   write ("Testing IRloadIndirect...");
  13.   write ("Should print 123...", p.f);
  14.  
  15. end;
  16.  
  17.