Clang Project

clang_source_code/test/Preprocessor/macro_rparen_scan.c
1// RUN: %clang_cc1 -E %s | grep '^3 ;$'
2
3/* Right paren scanning, hard case.  Should expand to 3. */
4#define i(x) 3 
5#define a i(yz 
6#define b ) 
7a b ) ; 
8
9