Compiler Error J0010

Syntax error

The compiler could not determine the meaning of an expression or statement within the source program. This error usually occurs when the line, indicated in the error message, is syntactically invalid. This error typically accompanies a more descriptive error. Correct any accompanying errors and compile again.

The following example illustrates this error:

public class Simple {
   
   public void method1() {
      int i =; // error: missing assignment value
   }
}