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