18 lines · c
1// RUN: not %clang_cc1 -E -frewrite-includes -DFIRST -I %S/Inputs %s -o - | FileCheck -strict-whitespace %s2 3#if __has_include bar.h4#endif5 6#if __has_include(bar.h)7#endif8 9#if __has_include(<bar.h)10#endif11 12// CHECK: #if __has_include bar.h13// CHECK: #endif14// CHECK: #if __has_include(bar.h)15// CHECK: #endif16// CHECK: #if __has_include(<bar.h)17// CHECK: #endif18