| Current Path : /var/www/html/kamini/gcc-4.8.2/libjava/testsuite/libjava.lang/ |
| Current File : /var/www/html/kamini/gcc-4.8.2/libjava/testsuite/libjava.lang/PR5057.java |
/* Test to make sure <clinit> is generated correctly. */
public class PR5057
{
public static int x;
static
{
x = 72;
}
public static void main (String[] args)
{
System.out.println (x);
}
}