2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.lang / PR5057_2.java
blob8e789ff34a23388e5846aa157bb76b1763a22a9e
1 /* Test to make sure <clinit> is generated correctly. */
3 class R
5 public static int z = 23;
8 public class PR5057_2 extends R
10 static
12 R.z = 72;
15 public static void main (String[] args)
17 System.out.println (R.z);