הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'void' illegal with all types
Remarks
The void type is used in a declaration with another type.
Example
The following example generates C2120:
// C2120.cpp
int main() {
void int i; // C2120
int j; // OK
}