xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/macro_rparen_scan.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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 )
7 a b ) ;
8 
9