[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Preprocessor / macro_not_define.c
blobc0e9c858311181fc792f368305edbbc3ee47058a
1 // RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
2 // CHECK: # define X 3
4 #define H #
5 #define D define
7 #define DEFINE(a, b) H D a b
9 DEFINE(X, 3)