; expected
The compiler detected a missing semicolon.
The following sample generates CS1002:
namespace x { abstract public class clx { int i // CS1002, missing semicolon public static int Main() { return 0; } } }