blob: 8c6161f92063dd13c43e6c1b5ffbb4e1c32f3242 [file] [log] [blame]
package annotator.tests;
import java.util.List;
public class LocalGenericShadow {
public List<String> foo = null;
public void method() {
List<Integer> foo = null;
System.out.println(foo);
}
}