2017-11-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr61817-2.c
blobe4326b81f26e3abe4300f3b01083bcc051b2d847
1 /* { dg-do compile } */
2 /* { dg-options "-std=c11 -ftrack-macro-expansion=1" } */
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 == 15);
18 A(b == 15);
19 A(c == 15);