Compiler Error J0033

Unterminated comment

The compiler detected the beginning of a block comment, but did not detect a valid ending. This error usually occurs when the comment terminator is accidentally omitted.

The following example illustrates this error:

public class Simple {
   
   /* This comment block
    * does not have a valid
    * terminator
   
}