repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gnu-cond-expr-1.c
blob
0f0bb2142286db3f42c9a94f84c8bc00a613047d
1
/* Test diagnostic for GNU extension: omitting middle term of
2
conditional expression. Test with no special options. */
3
/* Origin: Joseph Myers <joseph@codesourcery.com> */
4
/* { dg-do compile } */
5
/* { dg-options "-std=gnu99" } */
6
7
int
a
,
b
,
c
;
8
9
void
10
f
(
void
)
11
{
12
c
= (++
a
? :
b
);
13
}