mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 18:48:12 +07:00
check for conflicts with escalate visibility setting on (IDEA-88719)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
|
||||
}
|
||||
|
||||
class FooImpl extends Foo {
|
||||
private void fo<caret>o(){}
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
|
||||
protected void foo(){}
|
||||
}
|
||||
|
||||
class FooImpl extends Foo {
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user