Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
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() {}
};