Merge remote-tracking branch 'origin/master' into amakeev/gradle

GitOrigin-RevId: f9a633252daf311ecab19002c0f4757052eee9dc
This commit is contained in:
Anton Makeev
2019-05-17 19:13:15 +03:00
committed by intellij-monorepo-bot
parent 47bb3d8475
commit c105e26db3
1938 changed files with 71469 additions and 5103 deletions
@@ -0,0 +1,15 @@
interface Either {
public static final class Left<L> {
private final L value;
private Left(L value) {
this.value = value;
}
}
}
class Main {
{
new <error descr="'Left(L)' has private access in 'Either.Left'">Either.Left<></error>("");
}
}