![Russell Joyce](/assets/img/avatar_default.png)
Caused by overwriting the value of the actual type token being parsed by any following tokens that were examined or consumed, rather than just ignoring their values.
23 lines
227 B
C
23 lines
227 B
C
int a;
|
|
|
|
unsigned b;
|
|
unsigned int c;
|
|
|
|
long d;
|
|
long int e;
|
|
unsigned long f;
|
|
unsigned long int g;
|
|
|
|
volatile int i;
|
|
int volatile static j;
|
|
|
|
const int x;
|
|
long const y;
|
|
|
|
typedef int MyInt;
|
|
MyInt z = 1;
|
|
|
|
int main(void) {
|
|
return 0;
|
|
}
|