blob: 1512dd0abc4310760ffc6e5381f135b390aac5df [file] [log] [blame]
public interface IDEA99969 {
default IntStream distinct(Stream s) {
return s.map(i -> <error descr="Inconvertible types; cannot cast '<lambda parameter>' to 'int'">(int) i</error>);
}
}
interface Stream<T> {
<R> Stream<R> map(Function<? super T, ? extends R> mapper);
IntStream map(IntFunction<? super T> mapper);
LongStream map(LongFunction<? super T> mapper);
}
interface Function<T, R> {
public R apply(T t);
}
interface IntFunction<T> {
public int applyAsInt(T t);
}
interface LongFunction<T> {
public long applyAsLong(T t);
}
interface IntStream {}
interface LongStream {}