| Brian Carlstrom | 9f30b38 | 2011-08-28 22:41:38 -0700 | [diff] [blame^] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |||||
| 3 | class 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 | } | ||||