Compile this class with `gcj -C':
public class t {
public static int x;
static {
x = 72;
}
public static void main (String[] args)
{
System.out.println (x);
}
}
Now run `jcf-dump -c' on the output.
Note that there is no <clinit> method.
I think this must be a regression.
It works when I compile to native.
I sent a PR for this.
Tom