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]

gcc-java problem still exists


Alexandre,
rpm -q gcc-java
gcc-java-2.96-53
(it has your patch http://gcc.gnu.org/ml/gcc-patches/2000-08/msg00516.html applied)
Still crashes on the program below.
You can find more details at http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=15963
Vladislav

public class Y {
 final UU v=new UU();
 int u=0;
 public static class UU {
 protected UU()
 {
  Y.this.u=-1;
 }
 }
 public static void main(String [] args)
 {
  System.err.println("Y CALLED");
  final Y x=new Y();
  System.err.println(x.u);

 }
 }



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