summaryrefslogtreecommitdiff
path: root/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp')
-rw-r--r--external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp b/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp
deleted file mode 100644
index 305327bbe09..00000000000
--- a/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %clang -emit-llvm -g -S %s -o -
-// PR13531
-template <typename>
-struct unique_ptr {
- unique_ptr() {}
-};
-
-template <unsigned>
-struct Vertex {};
-
-void crash() // Asserts
-{
- unique_ptr<Vertex<2>[]> v = unique_ptr<Vertex<2>[]>();
-}