I found a bug in gcj -C.
Compile this:
import java.awt.*;
public class Foo
{
public static void main (String[] args)
{
System.out.println (BorderLayout.NORTH);
}
}
Then run with gij (or "java").
It prints "N", but it ought to print "NORTH".
I haven't tried to find it yet.
Tom