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 / p5 / tst / e14.pcat < prev    next >
Text File  |  2005-11-01  |  233b  |  12 lines

  1. (*** Check that statement lists and nested expressions are checked. ***)
  2. (*** Should produce 4 "Identifier is not defined" errors. ***)
  3.  
  4. program is
  5.   var x: integer := 1;
  6.  
  7. begin
  8.       x := x1;
  9.       x := x2;
  10.       x := x3 + x4;
  11. end;
  12.