home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / pascal-.zip / pascal- / tests / deviance / syntax < prev    next >
Encoding:
Text File  |  1992-11-21  |  199 b   |  14 lines

  1. {Syntax errors}
  2. program SynErr;
  3.   const
  4.     a:=1;
  5.     b=2;
  6.     c= ;
  7.     d=4;
  8.   type
  9.     S = recrod f,g: integer end;
  10.     T = array [1..2] of integer;
  11.   var
  12.     x: integer;
  13. begin if =2 then x:=1 end.
  14.