הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'identifier' : cannot define a type in a 'new-expression'
Remarks
You cannot define a type in the operand field of the new operator. Put the type definition in a separate statement.
Example
The following example generates C2462:
// C2462.cpp
int main()
{
new struct S { int i; }; // C2462
}