mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-14 04:27:17 +07:00
15 lines
304 B
Java
15 lines
304 B
Java
// "Add String as 2 parameter to method set" "true"
|
|
import java.util.List;
|
|
|
|
public class X<T> {
|
|
private List<T> myList;
|
|
|
|
public void set(List<T> list) {
|
|
myList = list;
|
|
}
|
|
|
|
public static void aa() {
|
|
X<Integer> x = new X<Integer>();
|
|
x.set<caret>(null, "aaa");
|
|
}
|
|
} |