This is the mail archive of the
java-prs@sources.redhat.com
mailing list for the Java project.
Re: gcj/283: GCJ fails to compile inner classes which extend another inner class
- To: apbianco at cygnus dot com
- Subject: Re: gcj/283: GCJ fails to compile inner classes which extend another inner class
- From: Mark Wielaard <mark at klomp dot org>
- Date: 14 Jul 2000 12:16:02 -0000
- Cc: java-prs at sourceware dot cygnus dot com,
- Reply-To: Mark Wielaard <mark at klomp dot org>
The following reply was made to PR gcj/283; it has been noted by GNATS.
From: Mark Wielaard <mark@klomp.org>
To: idstewart@softhome.net
Cc: java-gnats@sourceware.cygnus.com
Subject: Re: gcj/283: GCJ fails to compile inner classes which extend another inner class
Date: Fri, 14 Jul 2000 14:11:31 +0200
Hi,
You might want to try the patch attached to gcj/256
<http://sources.redhat.com/cgi-bin/gnatsweb.pl?cmd=view&pr=256&database=java>
That solves the problem for me.
Note that in your example you try to extend InnerB from a non static
innerclass InnerA which is not legal. Making InnerA a public static class
would be a valid example.
Mark