'type' : no variable declared before '='
The type specifier appears in declaration with no variable identifier. The following sample generates C2513:
void main() { int = 9; // C2513 // try ... // int i = 9; }