mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 11:20:55 +07:00
9 lines
217 B
Java
9 lines
217 B
Java
// "Add 'String' as 2nd parameter to method 'get'" "true-preview"
|
|
import java.util.List;
|
|
class Test<T> {
|
|
|
|
public LazyVal(final List<T> ts) {
|
|
get(t<caret>s, "");
|
|
}
|
|
public static <T1> void get(List<T1> l) {}
|
|
} |