Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gcc.dg/cpp/line4.c @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
/* { dg-do compile } */ /* Test #line with and without macros for the line number. */ extern void abort (void); #define L 90 #line 44 enum { i = __LINE__ }; #line L enum { j = __LINE__ }; #line 16 /* N.B. the _next_ line is line 16. */ char array1[i == 44 ? 1 : -1]; char array2[j == 90 ? 1 : -1]; char array3[__LINE__ == 19 ? 1 : -1];