mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
move inner: moved class should be checked if it contains inaccessible refs (IDEA-60450)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package p;
|
||||
|
||||
class A {
|
||||
private static class C {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package p;
|
||||
|
||||
class B extends A.C {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package p;
|
||||
|
||||
class A {
|
||||
private static class C {
|
||||
|
||||
}
|
||||
|
||||
private static class B extends C{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user