]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/nttp2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / nttp2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/nttp2.C b/gcc/testsuite/g++.old-deja/g++.pt/nttp2.C
deleted file mode 100644 (file)
index 08781da..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// Test for nested template template parameter feature
-
-template <template<template <class> class> class TTT> struct C
-{
-       int f() { return 0; }
-};
-
-template <template <class> class TT> struct D
-{
-       int     a;
-};
-
-template <template <class> class TT> struct E
-{
-       int     a;
-       int     b;
-};
-
-template <template <template <template<class> class> class> class TTT> 
-int g(TTT<E> t)
-{
-       TTT<D> tt;
-       return tt.f();
-}
-
-int main()
-{
-       C<E> c;
-       g(c);
-}