]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/friend47.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend47.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend47.C b/gcc/testsuite/g++.old-deja/g++.pt/friend47.C
deleted file mode 100644 (file)
index 37aa921..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 2000 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 7 Jan 2001 <nathan@codesourcery.com>
-
-// Bug 1033. We ICE'd when trying to make a non template class a templated
-// friend.
-
-class A {};
-class B {
-  template<class T> friend class A;   // ERROR - not a template
-};
-
-