mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 1194b033814fac3bdf672e8d3a4d7ccefc4dc35a
9 lines
219 B
Java
9 lines
219 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) {}
|
|
} |