repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
macro_rparen_scan.c
blob
7dfa98e4a88cd2dcfb93b408d029191f266a2ab4
1
// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
2
// CHECK:3 ;
3
4
/* Right paren scanning, hard case. Should expand to 3. */
5
#define i(x) 3
6
#define a i(yz
7
#define b )
8
a b
) ;
9