mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
EA-58413 - assert: RenameJavaMethodProcessor.findHidingMethodWithOtherSignature
collision check: rename method to existing name with method references
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
|
||||
static void f<caret>oo() {}
|
||||
static void foo2(int i) {}
|
||||
|
||||
{
|
||||
Runnable r = Test :: foo;
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
|
||||
static void foo2() {}
|
||||
static void foo2(int i) {}
|
||||
|
||||
{
|
||||
Runnable r = Test ::foo2;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user