1 /* Test to make sure <clinit> is generated correctly.  */
2 
3 public class PR5057
4 {
5   public static int x;
6 
7   static
8   {
9     x = 72;
10   }
11 
main(String[] args)12   public static void main (String[] args)
13   {
14     System.out.println (x);
15   }
16 }
17