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 
10