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++/24686] [4.0/4.1 Regression] ICE when building a variation of NMSTL



------- Comment #9 from jason at gcc dot gnu dot org  2005-11-11 15:19 -------
Further reduced:

struct A
{
  ~A();
};
bool h(int, const A&);
int f();
int i;
void g()
{
  i && h (({ static int l = f(); l; }),
          A());
}


-- 


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


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