1 | // RUN: clang-include-cleaner --print=changes %s -- -I %S/Inputs | FileCheck --allow-empty %s |
---|---|
2 | #include "foo.h" |
3 | #include "foo2.h" |
4 | |
5 | int n = foo(); |
6 | // Make sure both providers are preserved. |
7 | // CHECK-NOT: - "foo.h" |
8 | // CHECK-NOT: - "foo2.h" |
9 |