blob: f4558d127cd1fd4a73d8da2837433439441bfc71 [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.addd(new Lost<Integer>(), new Int<caret>eger(9));
}
}
class Lost<T> {
void addd(Lost<T> lt, T t){}
}