This is the mail archive of the
java-prs@sourceware.cygnus.com
mailing list for the Java project.
Re: gcj/172
- To: apbianco at cygnus dot com
- Subject: Re: gcj/172
- From: Bryce McKinlay <bryce at albatross dot co dot nz>
- Date: 16 Mar 2000 00:20:00 -0000
- Cc: java-prs at sourceware dot cygnus dot com,
- Reply-To: Bryce McKinlay <bryce at albatross dot co dot nz>
The following reply was made to PR gcj/172; it has been noted by GNATS.
From: Bryce McKinlay <bryce@albatross.co.nz>
To: apbianco@cygnus.com
Cc: java-gnats@sourceware.cygnus.com
Subject: Re: gcj/172
Date: Thu, 16 Mar 2000 13:20:49 +1300
The new patch works for all three test cases.
But here's another variation to keep you busy:
// InnerConstructor2.java:9: Superclass `A' of class `InnerConstructor2$B' not
found.
public class InnerConstructor2
{
class A {}
class B extends A {}
}
Again, it seems to be looking at the top-level scope for "A" instead of finding
the inner class declaration first.
[ bryce ]