[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Bug c++/13944] [3.3/3.4/3.5 Regression] exception in constructor of a class to be thrown is not caught



------- Additional Comments From jason at redhat dot com  2004-02-16 18:27 -------
Subject: Re:  [3.3/3.4/3.5] exception in constructor of a
 class to be thrown is not caught

Actually, this testcase does terminate under EDG:

  struct A
  {
    A() { }
    A(const A&) { throw 1; }
  };

  int main()
  {
    A a;

    try
     {
       throw a;
     }
    catch(...)
     {
     }
  }

To match this behavior, we need to treat cases where we elide the copy
constructor differently, as discussed in my comment in build_throw.

Jason


-- 


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

------- You are receiving this mail because: -------
You reported the bug, or are watching the reporter.



Reply to: