Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr61817-1.c
blobd58497fa89e07b6d142214ee3a5a87ba30614eec
1 /* { dg-do compile } */
2 /* { dg-options "-std=c11 -ftrack-macro-expansion=0" } */
4 #define A(x) _Static_assert(x, #x)
5 #define F(x, y, z) a = __LINE__, b = x ## y, c = z
7 enum {
8 #line 10
11 __LI,
12 NE__,
13 __LINE__
17 A(a == 10);
18 A(b == 10);
19 A(c == 10);