Home | History | Annotate | Download | only in tests
      1 package annotator.tests;
      2 
      3 public class LocalSimple {
      4   public void foo() {
      5     Object o = null;
      6     System.out.println(o);
      7   }
      8 }
      9