checkpoint
[org.ibex.arenaj.git] / src / edu / berkeley / cs / megacz / Test.java
1 package edu.berkeley.cs.megacz;
2
3 public class Test {
4     public static void main(String[] s) {
5     }
6
7     private class Inner {
8         public int foo;
9     }
10
11     //public int arr_foo[] = null;
12     public static int[] arr_foo = null;
13     Inner z = new Inner();
14     
15
16     public Test() {
17         z.foo = 3;
18         System.out.println(z.foo);
19     }
20 }