automatically rename overloads (IDEA-131926)

This commit is contained in:
Anna Kozlova
2014-12-23 14:17:30 +01:00
parent 169bf44357
commit 534f8ad773
8 changed files with 178 additions and 0 deletions
@@ -0,0 +1,13 @@
package p;
class Foo {
void bar() {}
void bar(int i){
bar();
}
{
bar();
bar(1);
}
}
@@ -0,0 +1,13 @@
package p;
class Foo {
void foo() {}
void foo(int i){
foo();
}
{
foo();
foo(1);
}
}