mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 20:05:01 +07:00
GitOrigin-RevId: 851fbe2731eae7b5e67c1dfa5788e98fdfeb8f8c
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) {}
|
|
} |