Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
syntax error in constraint clause: found 'identifier' expected a type
Remarks
A constraint was ill formed. For more information, see Constraints on Generic Type Parameters (C++/CLI).
Example
The following example generates C3394:
// C3394.cpp
// compile with: /clr /c
ref class MyClass {};
ref class R {
generic<typename T>
where T : static // C3394
// try the following line instead
// where T : MyClass
void f() {}
};