testsuite:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Jan 2001 12:50:28 +0000 (12:50 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Jan 2001 12:50:28 +0000 (12:50 +0000)
* g++.old-deja/g++.pt/instantiate13.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38904 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C [new file with mode: 0644]

index 4e44d8e..7a37361 100644 (file)
@@ -1,5 +1,9 @@
 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
 
+       * g++.old-deja/g++.pt/instantiate13.C: New test.
+
+2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
+
        * g++.old-deja/g++.other/defarg7.C: New test.
        * g++.old-deja/g++.other/defarg8.C: New test.
 
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C b/gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C
new file mode 100644 (file)
index 0000000..1fff4a2
--- /dev/null
@@ -0,0 +1,25 @@
+// Build don't link:
+
+// Copyright (C) 2000 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 11 Jan 2001 <nathan@codesourcery.com>
+
+// Bug 1551. We were accessing some uninitialized memory, causing us
+// to reject this.
+
+template <typename T>
+struct base
+{
+base();
+base(unsigned);
+};
+
+template <typename V>
+struct Y
+{
+Y(unsigned = 0);
+};
+
+template <>
+Y<char>::Y(unsigned) { }
+
+base<double> x;