diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/overlapping.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/overlapping.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang-tools-extra/test/clang-tidy/overlapping.cpp b/clang-tools-extra/test/clang-tidy/overlapping.cpp deleted file mode 100644 index f970a136892..00000000000 --- a/clang-tools-extra/test/clang-tidy/overlapping.cpp +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: clang-tidy -checks=-*,llvm-include-order -header-filter=.* %s \ -// RUN: -- -isystem %S/Inputs/Headers -I %S/Inputs/overlapping | \ -// RUN: not grep "note: this fix will not be applied because it overlaps with another fix" - -#include <s.h> -#include "o.h" - -// Test that clang-tidy takes into account in which file we are doing the -// replacements to determine if they overlap or not. In the file "o.h" there is -// a similar error at the same file offset, but they do not overlap. |