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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
cpp
/
19990119-1.c
blob
10a7baae3f5693e1bb6498ed78e077fdd0342122
1
/* This checks for two things:
2
- an obscure corner case in the standard rules for __LINE__
3
- regression of an associated bug in cpplib where the semicolon got lost */
4
/* { dg-do compile } */
5
6
enum
{
i
=
__LINE__\
7
};
8
9
char
array
[
i
==
6
?
1
: -
1
];