[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Preprocessor / macro_rparen_scan.c
blob7dfa98e4a88cd2dcfb93b408d029191f266a2ab4
1 // RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
2 // CHECK: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 ) ;