6_5_61_cond_unsigned_conversion.c (84B)
1 int test_main(void) { 2 unsigned int x = 1u; 3 return (0 ? 2 : x) == 1u ? 42 : 0; 4 }