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

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