freebsd-skq/test/Preprocessor/macro_not_define.c

10 lines
134 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -E %s | grep '^ # define X 3$'
2009-06-02 17:58:47 +00:00
#define H #
#define D define
#define DEFINE(a, b) H D a b
DEFINE(X, 3)