Your IP : 216.73.216.40


Current Path : /var/www/html/kamini/gcc-4.8.2/libjava/testsuite/libjava.lang/
Upload File :
Current File : /var/www/html/kamini/gcc-4.8.2/libjava/testsuite/libjava.lang/StaticConstructor.java

// Test to make sure static initializers are called

class bar
{
  public static int zog;
  public static int zag;

  static
  {
    zog = 12;
    zag = 2;
  }

  public bar() { } 
}

public class StaticConstructor
{
  static int foo ()
  {
    return new bar().zog;
  }

  public static void main(String args[])
  {
    System.out.println ("" + (foo() + bar.zag));
  }
}