fix double paste
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Jul 2009 20:22:36 +0000 (20:22 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Jul 2009 20:22:36 +0000 (20:22 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149535 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/g++.dg/torture/pr40388.C

index 0d74b9f..63fbbfb 100644 (file)
@@ -19,24 +19,3 @@ void bar()
 {
   A a1, a2;
 }
-void foo();
-
-struct A
-{
-  ~A()
-  {
-    try
-    {
-      foo();
-      foo();
-    }
-    catch (...)
-    {
-    }
-  }
-};
-
-void bar()
-{
-  A a1, a2;
-}