1 | // RUN: sed -e 's#//.*$##' %s > %t.cpp |
---|---|
2 | // RUN: clang-include-fixer -db=fuzzyYaml -input=%p/Inputs/fake_yaml_db.yaml %t.cpp -- |
3 | // RUN: FileCheck %s -input-file=%t.cpp |
4 | |
5 | // clang-include-fixer will add the include, but doesn't complete the symbol. |
6 | // CHECK: #include "foobar.h" |
7 | // CHECK: fba f; |
8 | |
9 | b::a::fba f; |
10 |