blob: 6256673804a0be1ff660746d4ec6bb3bd9256541 [file] [log] [blame]
/* This tests a combination of two gcc extensions. Omitting the middle
operand of ?: and using ?: as an lvalue. */
int x, y;
int main ()
{
(x ?: y) = 0;
return 0;
}