Merge to HEAD at tree-cleanup-merge-20041024 .
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 981022-1.c
blob46369fc81815327010a4c3149ccb9d26f3b3ca09
1 /* This tests a combination of two gcc extensions. Omitting the middle
2 operand of ?: and using ?: as an lvalue. */
3 int x, y;
5 int main ()
7 (x ?: y) = 0; /* { dg-bogus "lvalue" "" { xfail *-*-* } } */
8 return 0;