blob: b9f90eb26b39387bd27bf6cf23761d334d625d24 [file] [log] [blame]
interface Function<T, R> {
public R apply(T t);
static <K> Function<K, K> baz() {
return k -> k;
}
}
interface IFunction extends Function<Integer, Integer> {
static void bar() {}
static void ba() {
ba<caret>
}
}