checkpoint
[org.ibex.arenaj.git] / src / edu / berkeley / cs / megacz / Test.java
index a13fd44..8304159 100644 (file)
@@ -2,6 +2,19 @@ package edu.berkeley.cs.megacz;
 
 public class Test {
     public static void main(String[] s) {
-        System.out.println("hello");
+    }
+
+    private class Inner {
+        public int foo;
+    }
+
+    //public int arr_foo[] = null;
+    public static int[] arr_foo = null;
+    Inner z = new Inner();
+    
+
+    public Test() {
+        z.foo = 3;
+        System.out.println(z.foo);
     }
 }