inline method: check unique names for this variable in initial class scope (IDEA-127411)

This commit is contained in:
Anna Kozlova
2014-07-22 13:49:32 +02:00
parent ccc235e6a4
commit b585c95984
4 changed files with 24 additions and 1 deletions
@@ -0,0 +1,11 @@
class Test {
private final String test = "";
{
foo();
}
void fo<caret>o() {
if (test.isEmpty());
}
}