]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / instantiate13.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C b/gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C
deleted file mode 100644 (file)
index 1fff4a2..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// 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;