This is the mail archive of the
java-prs@sourceware.cygnus.com
mailing list for the Java project.
gcj/79
- To: apbianco at cygnus dot com
- Subject: gcj/79
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 1 Nov 1999 05:16:01 -0000
- Cc: java-prs at sourceware dot cygnus dot com,
- Reply-To: Tom Tromey <tromey at cygnus dot com>
The following reply was made to PR gcj/79; it has been noted by GNATS.
From: Tom Tromey <tromey@cygnus.com>
To: Java Gnats Server <java-gnats@sourceware.cygnus.com>
Cc: Anthony Green <green@cygnus.com>
Subject: gcj/79
Date: 31 Oct 1999 22:14:18 -0700
FYI, I just tried a simple test case and this works for me.
Maybe something more complex is going on?
I've appended my test code.
I'm running a circa-Oct 21 gcc and an up-to-date libgcj.
Tom
public class z1
{
public static byte[] zz = new byte[z2.SIZE];
public static void main (String[] args)
{
System.out.println (zz.length);
}
}
public class z2
{
public static final short SIZE = 37;
}