------- Additional Comments From bonniot at users dot sf dot net  2005-02-19 
02:35 -------
Since bytecode classes cannot be put in the testsuite at the moment, here is a
Java source that, when first compiled to bytecode, exercises this bug during the
bytecode->native compilation, still with --indirect-dispatch.

class Field {
  int x;
  Field(int x) {}
  Field(Field f) {
    this(f.x = 0);
  }
}


-- 


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

Reply via email to