------- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-23 11:52 ------- Btw, here's an even shorter testcase:
============================
struct A
{
~A() { }
};
struct B
{
B(const A&, const A&);
int foo();
};
void bar(int, int);
void baz(int& i)
{
B b=B(A(),A());
bar(i,b.foo());
}
============================
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22155
