Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier': the symbol to the left of a '::' must be a type
Remarks
The qualification used is invalid. Ensure that no extra symbols were used in the qualification and that you included all required headers.
Example
The following example generates C3083:
// C3083.cpp
// compile with: /c
struct S
{
S();
};
S::Extra::S() {} // C3083
S::S() {} // OK