mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
10 lines
224 B
Java
10 lines
224 B
Java
import java.io.*;
|
|
import java.util.*;
|
|
|
|
abstract class C {
|
|
Iterator<? extends Comparable<? extends Serializable>> bar(List<String> x, Set<Integer> y) {
|
|
return foo(x, y).iterator();
|
|
}
|
|
|
|
abstract <T> T foo(T x, T y);
|
|
} |