blob: c38447bad4f565e6be9853aa452b6ea0c87bdf5f [file] [log] [blame]
Brian Carlstrom9f30b382011-08-28 22:41:38 -07001// 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}