Make InitializeStaticStorageFromCode handle requests for uninitialized storage from <clinit>

Change-Id: I8562ad4fdb33c02c575ddc8986e49ee37c566cfd
diff --git a/test/Statics/Statics.java b/test/Statics/Statics.java
index c38447b..b777650 100644
--- a/test/Statics/Statics.java
+++ b/test/Statics/Statics.java
@@ -11,4 +11,35 @@
     static double s7 = 16777217;
     static Object s8 = "android";
     static Object[] s9 = { "a", "b" };
+
+    static boolean getS0() {
+        return s0;
+    }
+    static byte getS1() {
+        return s1;
+    }
+    static char getS2() {
+        return s2;
+    }
+    static short getS3() {
+        return s3;
+    }
+    static int getS4() {
+        return s4;
+    }
+    static long getS5() {
+        return s5;
+    }
+    static float getS6() {
+        return s6;
+    }
+    static double getS7() {
+        return s7;
+    }
+    static Object getS8() {
+        return s8;
+    }
+    static Object[] getS9() {
+        return s9;
+    }
 }