mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
15 lines
313 B
Java
15 lines
313 B
Java
// "Create method 'getPreloadKeys'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Foo<T>{
|
|
|
|
void test(Foo<String> f){
|
|
f.foo(getPreloadKeys());
|
|
}
|
|
|
|
private Collection<Collection<? extends String>> getPreloadKeys() {
|
|
return null;
|
|
}
|
|
|
|
void foo(Collection<Collection<? extends T>> c) {}
|
|
} |