]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/friend43.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend43.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend43.C b/gcc/testsuite/g++.old-deja/g++.pt/friend43.C
deleted file mode 100644 (file)
index 2597512..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-// Origin: Matt Austern <austern@isolde.engr.sgi.com>
-
-class A {
-public:
-  static void f();
-};
-
-template <class T>
-class B : public A {
-  friend void A::f();
-};
-
-template <class T>
-class C : public B<T>
-{
-};
-
-template class C<char>;