summaryrefslogtreecommitdiff
path: root/test/PCH/cxx2a-concept-specialization-expr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/cxx2a-concept-specialization-expr.cpp')
-rw-r--r--test/PCH/cxx2a-concept-specialization-expr.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/PCH/cxx2a-concept-specialization-expr.cpp b/test/PCH/cxx2a-concept-specialization-expr.cpp
deleted file mode 100644
index 6227d57c87..0000000000
--- a/test/PCH/cxx2a-concept-specialization-expr.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-// RUN: %clang_cc1 -std=c++2a -emit-pch %s -o %t
-// RUN: %clang_cc1 -std=c++2a -include-pch %t -verify %s
-
-// expected-no-diagnostics
-
-#ifndef HEADER
-#define HEADER
-
-template<typename... T>
-concept C = true;
-
-namespace n {
- template<typename... T>
- concept C = true;
-}
-
-void f() {
- (void)C<int>;
- (void)C<int, void>;
- (void)n::C<void>;
-}
-
-#else /*included pch*/
-
-int main() {
- (void)C<int>;
- (void)C<int, void>;
- (void)n::C<void>;
- f();
-}
-
-#endif // HEADER