7b43483f68
Just consumes and discards the "int" token and treats as if it was only a "short".
28 lines
290 B
C
28 lines
290 B
C
int a;
|
|
|
|
unsigned b;
|
|
unsigned int c;
|
|
|
|
long d;
|
|
long int e;
|
|
unsigned long f;
|
|
unsigned long int g;
|
|
|
|
short h;
|
|
short int i;
|
|
unsigned short j;
|
|
unsigned short int k;
|
|
|
|
volatile int l;
|
|
int volatile static m;
|
|
|
|
const int x;
|
|
long const y;
|
|
|
|
typedef int MyInt;
|
|
MyInt z = 1;
|
|
|
|
int main(void) {
|
|
return 0;
|
|
}
|