Compiler Error C2239

unexpected token 'token' following declaration of 'identifier'

An unexpected token was found in the specified declaration.

The following is an example of this error:

int i 8;   // error, missing =
int j = 7; // OK