xref: /llvm-project/clang-tools-extra/test/clang-include-fixer/prefix_variable.cpp (revision 43356f56bd2ede05c70db537e3f8b50a31444487)
1 // RUN: sed -e 's#//.*$##' %s > %t.cpp
2 // RUN: clang-include-fixer -db=yaml -input=%p/Inputs/fake_yaml_db.yaml %t.cpp --
3 // RUN: FileCheck %s -input-file=%t.cpp
4 
5 // CHECK-NOT: #include
6 // CHECK: doesnotexist f;
7 
8 namespace b {
9 doesnotexist f;
10 }
11