]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/friend49.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend49.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend49.C b/gcc/testsuite/g++.old-deja/g++.pt/friend49.C
deleted file mode 100644 (file)
index 3b243f0..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 5 Jun 2001 <nathan@codesourcery.com>
-
-// Bug 2929. We were forgetting about template parm scope when
-// injecting a friend decl into a class template specialization's
-// containing scope.
-
-template <class Type> class Vec;
-
-template <> class Vec<double>
-{
-public:
-  Vec ();
-  Vec<double> & Fn (double);
-  friend Vec<double> Fn (const Vec<double> &, double);
-}; // pop_binding ICE
-
-template <class _Tp> class Alloc
-{
-  template <class _Tp1> struct Rebind
-  {
-    typedef Alloc<_Tp1> other;
-  };
-};