macro_rparen_scan.c 156 B

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