blob: 67cc9ed9f6bd08d0af46e3862e1f45f1c1df34a8 [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>());
}
}
class Lost<T> {
void add(Lost<T> t){}
}