]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/typename21.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / typename21.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename21.C b/gcc/testsuite/g++.old-deja/g++.pt/typename21.C
deleted file mode 100644 (file)
index 2dc52aa..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-// Origin: Mark Mitchell <mark@codesourcery.com>
-// Special g++ Options:
-
-template <class T>
-struct S1 {
-  typedef T X;
-};
-
-template <class T>
-struct B {
-  typedef T I;
-};
-
-template <class T>
-struct S2 : public B<T> {
-  struct I {};
-
-  typedef typename S1<I>::X IX;
-
-  void f(IX);
-};
-
-template <class T>
-void S2<T>::f(IX) {}