OSDN Git Service

PR libgcj/12656:
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.lang / PR5057.java
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
12   public static void main (String[] args)
13   {
14     System.out.println (x);
15   }
16 }