This is the mail archive of the
java-prs@sourceware.cygnus.com
mailing list for the Java project.
gcj/178: compiler crashes on attempt to use anonymous class
- To: java-gnats at sourceware dot cygnus dot com
- Subject: gcj/178: compiler crashes on attempt to use anonymous class
- From: bryce at albatross dot co dot nz
- Date: 16 Mar 2000 01:19:09 -0000
- Reply-To: bryce at albatross dot co dot nz
- Resent-Cc: java-prs at sourceware dot cygnus dot com, green at cygnus dot com
- Resent-Reply-To: java-gnats@sourceware.cygnus.com, bryce@albatross.co.nz
>Number: 178
>Category: gcj
>Synopsis: compiler crashes on attempt to use anonymous class
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: apbianco
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Wed Mar 15 17:20:01 PST 2000
>Closed-Date:
>Last-Modified:
>Originator: Bryce McKinlay
>Release: gcc version 2.96 20000315 (experimental) w/ PR 172/174/176 patch
>Organization:
>Environment:
linux x86
>Description:
gcj gets a sig11 ice on presumably any attempt to define
an anonymous class.
public abstract class Anon
{
public abstract void foo();
public static void main(String[] args)
{
Anon a;
a = new Anon()
{
public void foo()
{
System.out.println("foo");
}
};
a.foo();
}
}
>How-To-Repeat:
Try to compile the test case.
>Fix:
>Release-Note:
>Audit-Trail:
>Unformatted: