Statics.java revision 9f30b38d74990286ce27c3a45368f73dbe3638f0
1// Copyright 2011 Google Inc. All Rights Reserved.
2
3class Statics {
4    static boolean s0 = true;
5    static byte s1 = 5;
6    static char s2 = 'a';
7    static short s3 = (short) 65000;
8    static int s4 = 2000000000;
9    static long s5 = 0x123456789abcdefL;
10    static float s6 = 0.5f;
11    static double s7 = 16777217;
12    static Object s8 = "android";
13    static Object[] s9 = { "a", "b" };
14}
15