1*67e74705SXin Li // RUN: not %clang_cc1 -E -frewrite-includes -DFIRST -I %S/Inputs %s -o - | FileCheck -strict-whitespace %s 2*67e74705SXin Li 3*67e74705SXin Li #if __has_include bar.h 4*67e74705SXin Li #endif 5*67e74705SXin Li 6*67e74705SXin Li #if __has_include(bar.h) 7*67e74705SXin Li #endif 8*67e74705SXin Li 9*67e74705SXin Li #if __has_include(<bar.h) 10*67e74705SXin Li #endif 11*67e74705SXin Li 12*67e74705SXin Li // CHECK: #if __has_include bar.h 13*67e74705SXin Li // CHECK: #endif 14*67e74705SXin Li // CHECK: #if __has_include(bar.h) 15*67e74705SXin Li // CHECK: #endif 16*67e74705SXin Li // CHECK: #if __has_include(<bar.h) 17*67e74705SXin Li // CHECK: #endif 18