db1b5e8135
From-SVN: r23225
10 lines
175 B
C
10 lines
175 B
C
/* 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;
|
|
}
|