blob: f5d44dbe1839e617e08150bb0ae832b3987c0f2c [file] [log] [blame]
// "Change variable 'list' type to 'List<java.lang.Integer>'" "true"
public class Test {
void foo() {
List<Integer> list = new List<>();
list.add(new Integer(0));
}
}
class List<T> {
void add(T t){}
}