summaryrefslogtreecommitdiffstats
path: root/clang/test/Preprocessor/macro_rparen_scan2.c
blob: 30597a00973f4aebf796c71e920ae3a339d30507 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -E %s | FileCheck %s

#define R_PAREN ) 

#define FUNC(a) a 

static int glob = (1 + FUNC(1 R_PAREN ); 

// CHECK: static int glob = (1 + 1 );

OpenPOWER on IntegriCloud