Compiler Error C2628
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2628.
type1' followed by 'type2' is illegal (did you forget a ';'?)
A semicolon may be missing.
The following sample generates C2628:
// C2628.cpp
class CMyClass {}
int main(){} // C2628 error
Possible resolution:
// C2628b.cpp
class CMyClass {};
int main(){}
Show: