------- Additional Comments From fche at redhat dot com  2005-01-07 22:58 
-------
Here is a simpler test case for at least one of the problems.

struct k {
  int data;
  k(int j): data(j) {}
};
k make_k () { return k(1); }
int main ()
{
  k foo = make_k ();
  return 0;
}


-- 


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

Reply via email to