aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/cpp/line4.c
blob: 84dbf9623a24b8528b05307f9ed82eed6d42f2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { 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];