1 2 3 4 5 6 7
#include <cstddef> int main(int argc, char* argv[]) { enum {N = (sizeof(std::size_t) == 8 ? 8 : -1)}; int x[N]; return 0; }