blob: d4a5664ae9998f1d0c1e578ef4115205ca4cf24c [file] [log] [blame]
Edward O'Callaghan848b9b62009-10-27 01:45:51 +00001// RUN: clang-cc %s -E | FileCheck -strict-whitespace %s
Reid Spencer5f016e22007-07-11 17:01:13 +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'Callaghan70881df2009-10-26 22:51:02 +00009// CHECK: f(2 * (f(2 * (z[0]))));
10