1*43356f56SNico Weber // RUN: sed -e 's#//.*$##' %s > %t.cpp 2*43356f56SNico Weber // RUN: clang-include-fixer -db=yaml -input=%p/Inputs/fake_yaml_db.yaml %t.cpp -- 3*43356f56SNico Weber // RUN: FileCheck %s -input-file=%t.cpp 4*43356f56SNico Weber 5*43356f56SNico Weber // CHECK: #include "foo.h" 6*43356f56SNico Weber // CHECK: b::a::foo f; 7*43356f56SNico Weber 8*43356f56SNico Weber b::a::foo f; 9