opomba,
Dostop do te strani zahteva pooblastilo. Poskusite se vpisati alispremeniti imenike.
Dostop do te strani zahteva pooblastilo. Poskusite lahko spremeniti imenike.
'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
}