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