1 // RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace 2 // CHECK: # define X 3 3 4 #define H # 5 #define D define 6 7 #define DEFINE(a, b) H D a b 8 9 DEFINE(X, 3) 10 11