Sdílet prostřednictvím


Chyba kompilátoru C2236

neočekávaný token "identifikátor". Zapomněl jsi na ";"?

Poznámky

Identifikátor je již definován jako typ a nelze ho přepsat uživatelem definovaným typem.

Example

Následující příklad vygeneruje C2236:

// C2236.cpp
// compile with: /c
int class A {};  // C2236 "int class" is unexpected
int i;
class B {};