18, 19 => 8, 9

GitOrigin-RevId: 3492248e09aa19e702597165d9cc6c33ffd33285
This commit is contained in:
Tagir Valeev
2020-01-16 08:11:51 +00:00
committed by intellij-monorepo-bot
parent 4fc7533d60
commit 21cc3d6654
24 changed files with 4 additions and 4 deletions
@@ -0,0 +1,10 @@
// "Make 'I.foo' public" "true"
interface I {
default void foo() { }
}
class A implements I {
{
this.foo();
}
}
@@ -0,0 +1,10 @@
// "Make 'I.foo' public" "true"
interface I {
private void foo() { }
}
class A implements I {
{
this.fo<caret>o();
}
}