aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro_rparen_scan.c
blob: d4e62837ae69522e54856de85d4e7d9a440168f4 (plain)
1
2
3
4
5
6
7
8
// RUN: clang -E %s | grep '^3 ;$'

/* Right paren scanning, hard case.  Should expand to 3. */
#define i(x) 3 
#define a i(yz 
#define b ) 
a b ) ;