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