• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package annotator.tests;
2 
3 import java.util.List;
4 
5 
6 public class LocalGenericShadow {
7   public List<String> foo = null;
8 
method()9   public void method() {
10     List<Integer> foo = null;
11     System.out.println(foo);
12   }
13 }
14