[clang] 85318d3 - [NFC] Remove unused test inputs
Chuanqi Xu via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 4 19:55:42 PDT 2022
Author: Chuanqi Xu
Date: 2022-07-05T10:55:24+08:00
New Revision: 85318d3281021f3900ee49338f6a9e2330b4a652
URL: https://github.com/llvm/llvm-project/commit/85318d3281021f3900ee49338f6a9e2330b4a652
DIFF: https://github.com/llvm/llvm-project/commit/85318d3281021f3900ee49338f6a9e2330b4a652.diff
LOG: [NFC] Remove unused test inputs
Added:
Modified:
Removed:
clang/test/Modules/Inputs/concept/A.cppm
clang/test/Modules/Inputs/concept/foo.h
################################################################################
diff --git a/clang/test/Modules/Inputs/concept/A.cppm b/clang/test/Modules/Inputs/concept/A.cppm
deleted file mode 100644
index beb370490617b..0000000000000
--- a/clang/test/Modules/Inputs/concept/A.cppm
+++ /dev/null
@@ -1,3 +0,0 @@
-module;
-#include "foo.h"
-export module A;
diff --git a/clang/test/Modules/Inputs/concept/foo.h b/clang/test/Modules/Inputs/concept/foo.h
deleted file mode 100644
index cf913a33303ca..0000000000000
--- a/clang/test/Modules/Inputs/concept/foo.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef FOO_H
-#define FOO_H
-
-template <class T>
-concept Range = requires(T &t) { t.begin(); };
-
-struct A {
-public:
- template <Range T>
- using range_type = T;
-};
-
-#endif
More information about the cfe-commits
mailing list