הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'operator' : illegal operand 'nullptr'
Remarks
nullptr cannot be an operand.
Example
The following example generates C2389:
// C2389.cpp
// compile with: /clr
int main() {
throw nullptr; // C2389
}