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