mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
weaken rename collisions detection ( IDEA-58181)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Base {
|
||||
private int name = 0;
|
||||
}
|
||||
|
||||
class Child extends Base {
|
||||
void foo() {
|
||||
int name = 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class Base {
|
||||
private int name = 0;
|
||||
}
|
||||
|
||||
class Child extends Base {
|
||||
void foo() {
|
||||
<selection>1</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user