Testcase that crashes the C++ FE.
authorChris Lattner <sabre@nondot.org>
Tue, 12 Sep 2006 16:28:14 +0000 (16:28 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 12 Sep 2006 16:28:14 +0000 (16:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30273 91177308-0d34-0410-b5e6-96231b3b80d8

test/C++Frontend/2006-09-12-OpaqueStructCrash.cpp [new file with mode: 0644]

diff --git a/test/C++Frontend/2006-09-12-OpaqueStructCrash.cpp b/test/C++Frontend/2006-09-12-OpaqueStructCrash.cpp
new file mode 100644 (file)
index 0000000..2877e17
--- /dev/null
@@ -0,0 +1,28 @@
+// RUN: llvm-g++ -O3 -S -o - %s
+
+struct A {
+   virtual ~A();
+};
+
+template <typename Ty>
+struct B : public A {
+   ~B () { delete [] val; }
+private:
+     Ty* val;
+};
+
+template <typename Ty>
+struct C : public A {
+   C ();
+   ~C ();
+};
+
+template <typename Ty>
+struct D : public A {
+     D () {}
+   private:
+     B<C<Ty> > blocks;
+};
+
+template class D<double>;
+