2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / cpp / 19990119-1.c
blob10a7baae3f5693e1bb6498ed78e077fdd0342122
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 } */
6 enum { i = __LINE__\
7 };
9 char array[i == 6 ? 1 : -1];