rename failure fixed: incomplete references on fields are now processed by VariableInIncompleteCodeSearcher

This commit is contained in:
Anna Kozlova
2014-12-24 20:26:33 +01:00
parent 9ec301792a
commit 5da3bc1687
4 changed files with 32 additions and 3 deletions
@@ -0,0 +1,11 @@
class MyTest {
String foo;
{
I i;
foo<caret>
i = MyTest::foo;
}
}
@@ -0,0 +1,11 @@
class MyTest {
String bar;
{
I i;
bar
i = MyTest::foo;
}
}