Compiler Error C3176
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 C3176.
type' : cannot declare local value type
A class can only be declared as a value type at global scope.
The following sample generates C3176.
// C3176.cpp
// compile with: /clr
int main () {
enum class C {}; // C3176
}
Show: