]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/typename13.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / typename13.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename13.C b/gcc/testsuite/g++.old-deja/g++.pt/typename13.C
deleted file mode 100644 (file)
index 48d12e6..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-// Build don't link:
-// Special g++ Options:
-// excess errors test - XFAIL *-*-*
-
-template <class T>
-struct B 
-{
-  typedef int I;
-};
-
-
-template <class T>
-struct D : public B<T>
-{
-  void f();
-};
-
-
-template <class T>
-void D<T>::f()
-{
-  I();
-}
-
-
-template <>
-struct B<int> 
-{
-  void I();
-};
-
-
-int main()
-{
-  D<int> di;
-  di.f();
-}