2009-10-27 09:45:51 +08:00
|
|
|
// 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 );
|
|
|
|
|
2009-10-27 06:51:02 +08:00
|
|
|
// CHECK: static int glob = (1 + 1 );
|
|
|
|
|