mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 01:57:50 +07:00
18, 19 => 8, 9
GitOrigin-RevId: 3492248e09aa19e702597165d9cc6c33ffd33285
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4fc7533d60
commit
21cc3d6654
+10
@@ -0,0 +1,10 @@
|
||||
// "Make 'I.foo' public" "true"
|
||||
interface I {
|
||||
default void foo() { }
|
||||
}
|
||||
|
||||
class A implements I {
|
||||
{
|
||||
this.foo();
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Make 'I.foo' public" "true"
|
||||
interface I {
|
||||
private void foo() { }
|
||||
}
|
||||
|
||||
class A implements I {
|
||||
{
|
||||
this.fo<caret>o();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user