Add checks for various obsolete types
This commit is contained in:
parent
9b4098a604
commit
20cf6ace00
|
@ -0,0 +1,5 @@
|
|||
int main()
|
||||
{
|
||||
__int64 x = 0;
|
||||
return (int) x;
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
int main()
|
||||
{
|
||||
long long x = 0;
|
||||
return (int) x;
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
uchar x = 0;
|
||||
return x;
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
uint x = 0;
|
||||
return x;
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
ulong x = 0;
|
||||
return x;
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
ushort x = 0;
|
||||
return x;
|
||||
}
|
Loading…
Reference in New Issue