/* { dg-do compile } *//* Test #line with and without macros for the line number. */externvoidabort(void);#define L 90#line 44enum{i=__LINE__};#line Lenum{j=__LINE__};#line 16 /* N.B. the _next_ line is line 16. */chararray1[i==44?1:-1];chararray2[j==90?1:-1];chararray3[__LINE__==19?1:-1];