From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29051 invoked by alias); 27 May 2005 05:39:08 -0000 Mailing-List: contact java-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-prs-owner@gcc.gnu.org Received: (qmail 29025 invoked by uid 48); 27 May 2005 05:39:07 -0000 Date: Fri, 27 May 2005 05:39:00 -0000 Message-ID: <20050527053907.29022.qmail@sourceware.org> From: "rmathew at gcc dot gnu dot org" To: java-prs@gcc.gnu.org In-Reply-To: <20050210002019.19870.mark@gcc.gnu.org> References: <20050210002019.19870.mark@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug java/19870] gcj -C doesn't generate accessors for private members across nested class boundaries X-Bugzilla-Reason: CC X-SW-Source: 2005-q2/txt/msg00595.txt.bz2 List-Id: ------- Additional Comments From rmathew at gcc dot gnu dot org 2005-05-27 05:39 ------- Note that this PR should not be closed as the checked-in patch was only for generating accessors for static fields. Methods are still a problem as is demonstrated by this simple testcase: public class A { public static class B { private static void snafu( ) { System.out.println( "Hello!"); } } public static void main( String[] args) { B.snafu( ); } } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19870