Home | History | Annotate | Download | only in tests
      1 package annotator.tests;
      2 
      3 import java.util.List;
      4 
      5 
      6 public class LocalGenericShadow {
      7   public List<String> foo = null;
      8 
      9   public void method() {
     10     @java.lang.UnderInitialization List<Integer> foo = null;
     11     System.out.println(foo);
     12   }
     13 }
     14