11 lines · c
1// Test UTF8 BOM at start of file2// RUN: printf '\357\273\277' > %t.c3// RUN: echo '#ifdef TEST\n' >> %t.c4// RUN: echo '#include <string>' >> %t.c5// RUN: echo '#endif' >> %t.c6// RUN: %clang_cc1 -DTEST -print-dependency-directives-minimized-source %t.c 2>&1 | FileCheck %s7 8// CHECK: #ifdef TEST9// CHECK-NEXT: #include <string>10// CHECK-NEXT: #endif11