blob: 7f2dc11db7b0081a3c1166b3fdf97b3467364688 [file] [log] [blame]
// "Change variable 'list' type to 'Lost<java.lang.Integer>'" "true"
public class Test {
void foo() {
Lost<String> list = new Lost<String>();
list.add(new Lost<Integ<caret>er>());
}
}
class Lost<T> {
void add(Lost<T> t){}
}