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 / semError.pcat < prev    next >
Text File  |  2006-03-05  |  309b  |  10 lines

  1. (* This program has a semantic error.  When compiling it, the compiler
  2.    will not even get to IR or target code generation.  It is included
  3.    to verify that the compiler exits correctly and aborts the "pc" and
  4.    "go" scripts. *)
  5.  
  6. program is
  7.   begin
  8.     i := j;   (* Error: i and j are undefined. *)
  9.   end;
  10.