summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/macro_not_define.c
blob: 82648d47d447bfe53402ccdc433ca2ddd4ea835e (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -E %s | grep '^ # define X 3$'

#define H # 
 #define D define 
 
 #define DEFINE(a, b) H D a b 
 
 DEFINE(X, 3)