inttypeof(int)aIntInt;// expected-error{{cannot combine with previous 'int' declaration specifier}}
shorttypeof(int)aShortInt;// expected-error{{'short typeof' is invalid}}
intintttt;// expected-error{{cannot combine with previous 'int' declaration specifier}}
typeof(TInt)anInt;
shortTInteee;// expected-error{{expected ';' at end of declaration}}
voidary[7]fff;// expected-error{{array has incomplete element type 'void'}} expected-error{{expected ';' at end of declaration}}
typeof(voidary[7])anIntError;// expected-error{{expected ')'}} expected-note {{to match this '('}} expected-error {{variable has incomplete type 'typeof(void)' (aka 'void')}}