macro_rparen_scan2.c 182 B

12345678910
  1. // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
  2. #define R_PAREN )
  3. #define FUNC(a) a
  4. static int glob = (1 + FUNC(1 R_PAREN );
  5. // CHECK: static int glob = (1 + 1 );