blob: e429f1e033d90820c8cd5478f2bfe980f0fdf8d7 [file] [log] [blame]
public class Test implements Interface{
public static int[] myField = new int[] {init()};
public static int init() {
return 1;
}
public static void main(String[] args){
Interface i = new Test();
System.out.println(i.getField());
}
public int[] getField() {
return myField;
}
}