macro_rparen_scan2.c revision 848b9b6227e8319efabc9d65aa6ca58c24b85f8b
1// RUN: clang-cc -E %s | FileCheck -strict-whitespace %s
2
3#define R_PAREN )
4
5#define FUNC(a) a
6
7static int glob = (1 + FUNC(1 R_PAREN );
8
9// CHECK: static int glob = (1 + 1 );
10
11