xref: /aosp_15_r20/external/clang/test/Preprocessor/macro_rparen_scan.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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