blob: 8e789ff34a23388e5846aa157bb76b1763a22a9e [file] [log] [blame]
/* Test to make sure <clinit> is generated correctly. */
class R
{
public static int z = 23;
}
public class PR5057_2 extends R
{
static
{
R.z = 72;
}
public static void main (String[] args)
{
System.out.println (R.z);
}
}