llvm-project/clang/test/Preprocessor/macro_rparen_scan2.c

11 lines
180 B
C
Raw Normal View History

// RUN: clang-cc -E %s | FileCheck -strict-whitespace %s
2006-07-30 15:33:49 +08:00
#define R_PAREN )
#define FUNC(a) a
static int glob = (1 + FUNC(1 R_PAREN );
// CHECK: static int glob = (1 + 1 );