]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/ttp40.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp40.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/ttp40.C b/gcc/testsuite/g++.old-deja/g++.pt/ttp40.C
deleted file mode 100644 (file)
index d30b4d6..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <vector>
-
-template<class E,template<class> class DD = std::vector> class C
-{
-               DD<E> d;
-       public:
-               int f();
-};
-
-template<class E,template<class> class DD> int C<E,DD>::f()
-{
-       DD<E> d2;
-       return d2.size();
-}
-
-int main()
-{
-       C<int> c;
-       c.f();
-}