mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
189 B
C
10 lines
189 B
C
// RUN: %clang_cc1 %s -E | FileCheck -strict-whitespace %s
|
|
// Check for C99 6.10.3.4p2.
|
|
|
|
#define f(a) f(x * (a))
|
|
#define x 2
|
|
#define z z[0]
|
|
f(f(z));
|
|
|
|
// CHECK: f(2 * (f(2 * (z[0]))));
|
|
|