summaryrefslogtreecommitdiff
path: root/TestPrograms/test_32bit.cpp
blob: 410bba627f8dc3915fdb10e22491768bc53ba321 (plain)
1
2
3
4
5
6
7
#include <cstddef>
int main(int argc, char* argv[])
{
    enum {N = (sizeof(std::size_t) == 4 ? 4 : -1)};
    int x[N];
    return 0;
}