Compiler Error C2653

'identifier' : is not a class or namespace name

The specified identifier was not a class, structure, union, or namespace name.

An identifier that was not a class, structure, union, or namespace was accessed using incorrect syntax.

The following is an example of this error:

int x;
int main()
{
   return x::i; // error
}