Home | History | Annotate | Download | only in cases
      1 package annotations.tests.classfile.cases;
      2 
      3 public class TestFieldSimple {
      4   public int i;
      5   private int j;
      6   protected Object o;
      7   String s = null;
      8   TestFieldSimple f = null;
      9 }
     10