]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/friend14.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend14.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend14.C b/gcc/testsuite/g++.old-deja/g++.pt/friend14.C
deleted file mode 100644 (file)
index 4ed5fcc..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-
-template <class U>
-class S1
-{
-  template <class T>
-  friend class S2;
-
-  static int i;
-};
-
-
-template <class T>
-class S2
-{
-public:
-  static void f() { S1<T>::i = 3; }
-};
-
-
-void g()
-{
-  S2<double>::f();
-  S2<long>::f();
-}