xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/macro_rparen_scan2.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
2 
3 #define R_PAREN )
4 
5 #define FUNC(a) a
6 
7 static int glob = (1 + FUNC(1 R_PAREN );
8 
9 // CHECK: static int glob = (1 + 1 );
10 
11