This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/15764] no cleanup if temporary's dtor terminates with an exception


------- Additional Comments From boris at kolpackov dot net  2004-06-01 17:52 -------
$ cat >test.cxx

#include <iostream>

using std::cerr;
using std::endl;

struct a
{
  ~a ()
  {
    throw 1;
  }
};

int 
f (a const& acr = a ())
{
  return 1;
}

struct b
{
  b (int)
  {
    cerr << "b" << endl;
  }

  ~b ()
  {
    cerr << "~b" << endl;
    // std::abort ();
  }
};

int
main ()
{
  try
  {
    b b_ (f ());    
  } 
  catch (...) {}
}

$ g++ test.cxx
$ ./a.out
b
$ #?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15764


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]