blob: d4a5664ae9998f1d0c1e578ef4115205ca4cf24c [file] [log] [blame]
Edward O'Callaghan60c143e2009-10-27 01:45:51 +00001// RUN: clang-cc %s -E | FileCheck -strict-whitespace %s
Chris Lattnerfdc0abe2006-07-27 06:17:55 +00002// Check for C99 6.10.3.4p2.
3
4#define f(a) f(x * (a))
5#define x 2
6#define z z[0]
7f(f(z));
8
Edward O'Callaghan0e2f7932009-10-26 22:51:02 +00009// CHECK: f(2 * (f(2 * (z[0]))));
10