[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Preprocessor / macro_rparen_scan2.c
blob42aa5445e90510f3f449b074df60e54d87caf78e
1 // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
3 #define R_PAREN )
5 #define FUNC(a) a
7 static int glob = (1 + FUNC(1 R_PAREN );
9 // CHECK: static int glob = (1 + 1 );