]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/eh/dead1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / eh / dead1.C
diff --git a/gcc/testsuite/g++.dg/eh/dead1.C b/gcc/testsuite/g++.dg/eh/dead1.C
deleted file mode 100644 (file)
index 88ae922..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// PR 6320
-// Rechained the MUST_NOT_THROW region in the wrong order wrt the 
-// TRY/CATCH while removing them and got confused.
-// { dg-do compile }
-
-struct S {
-  ~S();
-};
-
-void foo()
-{
-  try {
-    return;
-  }
-  catch (int) {
-  }
-  catch (...) {
-    S s;
-  }
-}