Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - 4002 invalid variable class http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 4002                Invalid variable class
------------------------------------------------------------------------------
 Description
   This error occurs when using a variable that does not belong to the
   variable class required for the current syntax. An example is to
   reference an array element and forget the array subscript, as in:

   vardef
      char(20) cTestCase[ 5 ]
      uint     n
   enddef
   // initialization normally takes places here
   for n := 0 to 4
      ?? cTestCase      // element subscript missing: cTestCase[ n ]
   next

 Solution
   Correct the code to use the correct variable class.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson