]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/friend33.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend33.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend33.C b/gcc/testsuite/g++.old-deja/g++.pt/friend33.C
deleted file mode 100644 (file)
index 5feec1a..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Build don't run:
-// Special g++ Options: -g
-
-template <class P1>
-struct S1
-{
-  struct SS1
-  {
-  };
-  friend void Foo (const SS1& ss1)
-    {
-    }
-};
-
-template <class P1>
-void Foo(const S1<P1>& s1)
-{
-  typedef typename S1<P1>::SS1 TYPE;
-  TYPE t;
-  Foo(t);
-}
-
-int main ()
-{
-  S1<double> obj;
-  Foo(obj);
-}
-