]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/crash59.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / crash59.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash59.C b/gcc/testsuite/g++.old-deja/g++.pt/crash59.C
deleted file mode 100644 (file)
index e42f348..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// Copyright (C) 2000 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 4 Oct 2000 <nathan@codesourcery.com>
-// Origin: Bug 543 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
-
-// Bug 532. We failed to bail out when tsubsting a _DECL failed
-
-class ATOMSET
-{
-};
-
-template <class T>
-void addConstsTo(const T &container)
-{
-typename T::const_iterator l = 0; // ERROR - no type const_iterator
-}
-
-void tallyConstants()
-{
-addConstsTo(ATOMSET());
-}