// RUN: clang -warn-dead-stores -warn-uninit-values -verify %svoidf1(){inti;intj=i?:1;// expected-warning{{use of uninitialized variable}} //expected-warning{{Value stored to 'j' during its initialization is never read}}}void*f2(int*i){returni?:0;}void*f3(int*i){inta;return&a?:i;}voidf4(){charc[1?:2];}