Re: Integer skip....
- Posted by Robert Craig <rds at ATTCANADA.NET> Feb 09, 1999
- 464 views
Patrick Quist writes: > Is this a bug.... > [File] > integer TEST > procedure testing() > integer TEST <-- Here doesn't come an error > TEST=1 <-- Here comes an error > end procedure > [EOF] On my machine this example gives a warning, not an error: Warning: local variable TEST in junk.ex is not used (where junk.ex is the name of the file) It's referring to the fact that the *local* (file-level) variable TEST, which is different from the *private* variable TEST declared inside testing(), is declared but not used for any purpose. Regards, Rob Craig Rapid Deployment Software http://members.aol.com/FilesEu/