This is the mail archive of the java-discuss@sources.redhat.com mailing list for the Java project.


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

Re: gcc 3.0



Bryce McKinlay writes:

> - 284 (using "Outer.this" doesn't work, compiler segfault)

294. This was fixed yesterday:

  http://gcc.gnu.org/ml/gcc-patches/2000-10/msg00629.html

> - 291 (runtime crash/error accessing fields in outer context. Is this
> the "Hashtable" bug?)

I don't think so. I can't reproduce it. I think it was fixed with
yesterday's patch, I can even run a test case (but the Hashtable bug
is still here:)

--- old.java    Thu Oct 19 21:21:12 2000
+++ InnerInitializer.java       Thu Oct 19 21:19:41 2000
@@ -10,7 +10,7 @@ public class InnerInitializer
   void a()
   {
     bar = 7;
-    new A();
+    System.out.println (new A ().foo);
   }
   
   class A

> - 316 (I've posted a patch for this)

I'm going to have a look at it. 

Thanks.

./A

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