This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug java/25283] New: gcj generates invalid signature
- From: "tromey at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 6 Dec 2005 19:01:06 -0000
- Subject: [Bug java/25283] New: gcj generates invalid signature
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
gcj generates an invalid signature for the anonymous constructor
in this test case:
public class t {
public t(char[][] args) { }
public Object m() {
return new t(new char[][] { "hi".toCharArray(),
"bob".toCharArray(),
"and joe".toCharArray() }) {
};
}
}
--
Summary: gcj generates invalid signature
Product: gcc
Version: 4.0.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: java
AssignedTo: tromey at gcc dot gnu dot org
ReportedBy: tromey at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25283