mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
9 lines
220 B
Java
9 lines
220 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(ts, "");
|
|
}
|
|
public static <T1> void get(List<T1> l, String s) {}
|
|
} |