Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!uakari.primate.wisc.edu!crdgw1!uunet!isis!ebergman From: ebergman@isis.cs.du.edu (Eric Bergman-Terrell) Newsgroups: comp.lang.pascal Subject: Re: DYNIX Pascal compiler Keywords: compiler Message-ID: <1991Feb21.020820.25560@isis.cs.du.edu> Date: 21 Feb 91 02:08:20 GMT References: Reply-To: ebergman@isis.UUCP (Eric Bergman-Terrell) Organization: Math/CS, University of Denver Lines: 10 The error message is accurate. Your program has a statement like: for i := 1 to 100 do ... But the loop variable (i) must be a local variable. This is a rule of Pascal that is unenforced on some compilers... Terrell