Files
clang-p2996/clang-tools-extra/include-cleaner/test/multiple-providers.cpp
2022-12-06 15:03:11 +01:00

9 lines
237 B
C++

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