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 / error1.pcat < prev    next >
Text File  |  2006-03-05  |  217b  |  15 lines

  1. (* This program tests the "Allocation-failed" error. *)
  2.  
  3. program is
  4.  
  5.   type A is array of integer;
  6.   var p: A := nil;
  7.  
  8. begin
  9.  
  10.   write ("Should cause an allocation-failed message...");
  11.   p := A {{ 1000 of 0 }};
  12.  
  13. end;
  14.  
  15.