mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
java push down: ignore visibility conflicts in inheritors (IDEA-211394)
GitOrigin-RevId: f51970b30e584b9ce319107b97a8c2ab2d22e79c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
2986cf21d1
commit
6660522b3e
@@ -0,0 +1,10 @@
|
||||
package a;
|
||||
import c.Super;
|
||||
|
||||
class SomeA extends Super {
|
||||
{
|
||||
foo();
|
||||
}
|
||||
|
||||
protected void foo() {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package b;
|
||||
import c.Super;
|
||||
|
||||
class SomeB extends Super {
|
||||
{
|
||||
foo();
|
||||
}
|
||||
|
||||
protected void foo() {}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package c;
|
||||
|
||||
public class Super {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package a;
|
||||
import c.Super;
|
||||
|
||||
class SomeA extends Super {
|
||||
{
|
||||
foo();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package b;
|
||||
import c.Super;
|
||||
|
||||
class SomeB extends Super {
|
||||
{
|
||||
foo();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package c;
|
||||
|
||||
public class Super {
|
||||
protected void foo() {}
|
||||
}
|
||||
Reference in New Issue
Block a user