Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
'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
}