1 2 3 4 5 6 7 8 9 10 11
static void compare (long long foo) { if (foo < 4294967297LL) abort(); } int main(void) { compare (8589934591LL); exit (0); }