1 2 3 4 5 6 7 8 9 10
void foo (void) { extern char i[10]; { extern char i[]; char x[sizeof (i) == 10 ? 1 : -1]; } }