Compiler Error C2120
'void' illegal with all types
The void
type is used in a declaration with another type.
The following sample generates C2120:
// C2120.cpp
int main() {
void int i; // C2120
int j; // OK
}
Tätä selainta ei enää tueta.
Päivitä Microsoft Edgeen, jotta voit hyödyntää uusimpia ominaisuuksia, suojauspäivityksiä ja teknistä tukea.
'void' illegal with all types
The void
type is used in a declaration with another type.
The following sample generates C2120:
// C2120.cpp
int main() {
void int i; // C2120
int j; // OK
}