Compiler Error C3232
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 C3232.
param' : a generic type parameter cannot be used in a qualified name
A generic type parameter was used incorrectly.
The following sample generates C3232:
// C3232.cpp
// compile with: /clr
generic <class T>
ref class C {
typename T::TYPE t; // C3232
};
Show: