mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
move static: correctly process ambiguity between moved members (IDEA-114908)
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
public class A {
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class B {
|
||||
static void foo() {
|
||||
}
|
||||
|
||||
static class Bar {
|
||||
void foo() {
|
||||
B.foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class A {
|
||||
static void foo() {
|
||||
}
|
||||
|
||||
static class Bar {
|
||||
void foo() {
|
||||
A.foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class B {
|
||||
}
|
||||
Reference in New Issue
Block a user