6_5_64_generic_control_no_eval.c (106B)
1 int test_main(void) { 2 int x = 0; 3 (void)_Generic(x++, int: 1, default: 0); 4 return x == 0 ? 42 : 0; 5 }