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++/14083] [3.3/3.4/3.5 regression] ICE in conditional expression operator with throw


------- Additional Comments From bangerth at dealii dot org  2004-02-09 14:22 -------
This only needs one header file: 
----------------- 
#include <string> 
 
int main() 
{ 
  std::string s; 
  try { 
    s=="" ? s : throw 1; 
  } catch (...) {}; 
} 
----------- 

-- 


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


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