* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / gnu-cond-expr-3.c
blobe15ed0259c7b1ab53f0ceb2f0d95faa4b6914560
1 /* Test diagnostic for GNU extension: omitting middle term of
2 conditional expression. Test with -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -pedantic-errors" } */
7 int a, b, c;
9 void
10 f (void)
12 c = (++a ? : b); /* { dg-error "error: ISO C forbids omitting the middle term of a \\?: expression" } */