mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 00:42:21 +07:00
d4ff582489
IDEA-CR-55327 GitOrigin-RevId: e2b1043a41b9548df3c2eb263a27da6d6c22b6be
16 lines
435 B
Java
16 lines
435 B
Java
import java.util.Collection;
|
|
import java.util.Set;
|
|
import java.util.TreeSet;
|
|
|
|
class Test {
|
|
Test(final Set<? super String> set) {
|
|
System.out.println(join(TreeSet.cre<caret>ate(set)));
|
|
}
|
|
|
|
public static String join(Iterable<?> items) {return "";}
|
|
public static String join(Collection<String> strings) {return "";}
|
|
}
|
|
|
|
class TreeSet<E> extends Set<E> {
|
|
static <T> TreeSet<T> create(Collection<? extends T> c) { return null;}
|
|
} |