aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/gnu-cond-expr-1.c
blob: 0f0bb2142286db3f42c9a94f84c8bc00a613047d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test diagnostic for GNU extension: omitting middle term of
   conditional expression.  Test with no special options.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */

int a, b, c;

void
f (void)
{
  c = (++a ? : b);
}