Files
clang-p2996/clang/test/Preprocessor/macro_disable3.c
Chris Lattner fdc0abe619 new testcase
llvm-svn: 38759
2006-07-27 06:17:55 +00:00

9 lines
151 B
C

// RUN: clang %s -E | grep -F 'f(2 * (f(2 * (z[0]))));'
// Check for C99 6.10.3.4p2.
#define f(a) f(x * (a))
#define x 2
#define z z[0]
f(f(z));