6_5_cond_incompatible_ptr.c (97B)
1 int test_main(void) { 2 int i = 0; 3 double d = 0.0; 4 void* p = 1 ? &i : &d; 5 return p != 0; 6 }