blob: 86b884119d7aeae3e8f94346a2eb16aaf927c668 [file] [log] [blame]
Brian Carlstrom9f30b382011-08-28 22:41:38 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3class AllFields {
4 static boolean sZ;
5 static byte sB;
6 static char sC;
7 static double sD;
8 static float sF;
9 static int sI;
10 static long sJ;
11 static short sS;
12 static Object sObject;
13 static Object[] sObjectArray;
14
15 boolean iZ;
16 byte iB;
17 char iC;
18 double iD;
19 float iF;
20 int iI;
21 long iJ;
22 short iS;
23 Object iObject;
24 Object[] iObjectArray;
25}