Externalize test code
Change-Id: Iab19397c7a72fb9a3ca63bfd0bc4eaf1a98138ba
diff --git a/test/Statics/Statics.java b/test/Statics/Statics.java
new file mode 100644
index 0000000..c38447b
--- /dev/null
+++ b/test/Statics/Statics.java
@@ -0,0 +1,14 @@
+// Copyright 2011 Google Inc. All Rights Reserved.
+
+class Statics {
+ static boolean s0 = true;
+ static byte s1 = 5;
+ static char s2 = 'a';
+ static short s3 = (short) 65000;
+ static int s4 = 2000000000;
+ static long s5 = 0x123456789abcdefL;
+ static float s6 = 0.5f;
+ static double s7 = 16777217;
+ static Object s8 = "android";
+ static Object[] s9 = { "a", "b" };
+}