]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.eh/terminate1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.eh / terminate1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.eh/terminate1.C b/gcc/testsuite/g++.old-deja/g++.eh/terminate1.C
deleted file mode 100644 (file)
index 9526041..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// Test that an exception thrown out of the constructor for the exception
-// object (i.e. "after completing evaluation of the expression to be thrown
-// but before the exception is caught") causes us to call terminate.
-
-#include <exception>
-#include <cstdlib>
-
-void my_terminate ()
-{
-  std::exit (0);
-}
-
-struct A
-{
-  A () {}
-  A (const A&) { throw 1; }
-};
-
-int main (void)
-{
-  std::set_terminate (my_terminate);
-
-  A a;
-  try { throw a; }
-  catch (...) {}
-  return 1;
-}