------- 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