11 lines · cpp
1// RUN: sed -e 's#//.*$##' %s > %t.cpp2// RUN: not clang-include-fixer -db=fixed -input='foo= "foo.h"' %t.cpp --3// RUN: FileCheck %s -input-file=%t.cpp4 5// CHECK-NOT: #include6// CHECK: #include "doesnotexist.h"7// CHECK-NEXT: foo f;8 9#include "doesnotexist.h"10foo f;11