[Bug c++/12910] New: Double exception error

nick at bel dot ru gcc-bugzilla@gcc.gnu.org
Wed Nov 5 12:16:00 GMT 2003


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: Double exception error
           Product: gcc
           Version: 3.3.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: nick at bel dot ru
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: Intel x86
GCC target triplet: Linux 2.4.22

I found bug when double exception occured.
Minimal sample:
----------------
#include <string>
class E {
public:
  E() { throw std::string("except"); }
};
int main(){
  throw E();
}



More information about the Gcc-bugs mailing list