Home | History | Annotate | Download | only in Preprocessor
      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