]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
This commit was manufactured by cvs2svn to create branch
authorNo Author <no-author@gcc.gnu.org>
Tue, 10 Dec 2002 22:32:42 +0000 (22:32 +0000)
committerNo Author <no-author@gcc.gnu.org>
Tue, 10 Dec 2002 22:32:42 +0000 (22:32 +0000)
'gcc-3_2-branch'.

From-SVN: r60016

gcc/testsuite/g++.dg/template/dtor1.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.dg/template/dtor1.C b/gcc/testsuite/g++.dg/template/dtor1.C
new file mode 100644 (file)
index 0000000..f5d9d6a
--- /dev/null
@@ -0,0 +1,8 @@
+struct A {};
+
+template <typename T> struct B
+{
+  B() { A().A::~A(); }
+};
+
+B<void> b;