]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/infinite1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / infinite1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/infinite1.C b/gcc/testsuite/g++.old-deja/g++.pt/infinite1.C
deleted file mode 100644 (file)
index 7e7e5fe..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Test for catching infinitely recursive instantiations.
-// Origin: Jason Merrill <jason@redhat.com>
-
-// Special g++ Options: -ftemplate-depth-10
-
-template <int i> void f()
-{
-  f<i+1>();                    // ERROR - excessive recursion
-}
-
-// We should never need this specialization because we should issue an
-// error first about the recursive template instantions.  But, in case
-// the compiler fails to catch the error, this will keep it from
-// running forever instantiating more and more templates.
-template <> void f<11>();
-
-int main()
-{
-  f<0>();                      // ERROR - starting here
-}