Add additional tests

pull/748/head
Jeffrey Walton 2018-11-17 15:09:36 -05:00
parent 147983305a
commit b0f77fe7e3
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
int main(int argc, char* argv[])
{
enum {N = (sizeof(size_t) == 4 ? 4 : -1)};
int x[N];
return 0;
}

View File

@ -0,0 +1,6 @@
int main(int argc, char* argv[])
{
enum {N = (sizeof(size_t) == 8 ? 8 : -1)};
int x[N];
return 0;
}