summaryrefslogtreecommitdiff
path: root/external/bsd/llvm/dist/clang/test/CodeCompletion/function-templates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'external/bsd/llvm/dist/clang/test/CodeCompletion/function-templates.cpp')
-rw-r--r--external/bsd/llvm/dist/clang/test/CodeCompletion/function-templates.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/external/bsd/llvm/dist/clang/test/CodeCompletion/function-templates.cpp b/external/bsd/llvm/dist/clang/test/CodeCompletion/function-templates.cpp
deleted file mode 100644
index cdbbf75838e..00000000000
--- a/external/bsd/llvm/dist/clang/test/CodeCompletion/function-templates.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace std {
- template<typename RandomAccessIterator>
- void sort(RandomAccessIterator first, RandomAccessIterator last);
-
- template<class X, class Y>
- X* dyn_cast(Y *Val);
-}
-
-class Foo {
-public:
- template<typename T> T &getAs();
-};
-
-void f() {
- std::sort(1, 2);
- Foo().getAs<int>();
- // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:15:8 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
- // CHECK-CC1: dyn_cast<<#class X#>>(<#Y *Val#>)
- // CHECK-CC1: sort(<#RandomAccessIterator first#>, <#RandomAccessIterator last#>
- // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:16:9 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
- // CHECK-CC2: getAs<<#typename T#>>()
-)
-