blob: c38447bad4f565e6be9853aa452b6ea0c87bdf5f [file] [log] [blame]
// 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" };
}