Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
'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
}