opnsense-src/test/Preprocessor/macro_disable3.c

11 lines
189 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 %s -E | FileCheck -strict-whitespace %s
2009-06-02 13:58:47 -04:00
// Check for C99 6.10.3.4p2.
#define f(a) f(x * (a))
#define x 2
#define z z[0]
f(f(z));
2009-11-04 10:04:32 -05:00
// CHECK: f(2 * (f(2 * (z[0]))));