@NotNull for RunConfigurationExtension.updateJavaParameters()

GitOrigin-RevId: 5c472044f340aeaf67f3a81695814e70e3a125f0
This commit is contained in:
Dmitry Jemerov
2019-06-12 18:38:02 +02:00
committed by intellij-monorepo-bot
parent 24d766790c
commit da9e941d80
279 changed files with 3787 additions and 2441 deletions

View File

@@ -0,0 +1,27 @@
import java.util.function.Function;
class MyTest {
{
Function<B, Try<A>> aNew = Try::new;
Try<B> bTry = new Try<>(new B());
Try<A> aTry = bTry.flatMap(Try::new);
}
private static class A { }
private static class B extends A { }
private static class Try<T> {
public Try(T t) {
}
public Try(Exception e) {
}
public <U> Try<U> flatMap(Function<? super T, Try<U>> mapper) {
return null;
}
}
}