* Makefile.in: Rebuilt.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 981022-1.c
blob6256673804a0be1ff660746d4ec6bb3bd9256541
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;
8 return 0;