replace ref quickfix checks scope (IDEA-64946)

This commit is contained in:
anna
2011-02-02 14:02:19 +01:00
parent 39b0f3e887
commit ab8c561e5c
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,11 @@
// "Rename Reference" "true"
class c {
void foo(boolean b) {
if (b) {
int i = 0;
i++;
} else {
i<caret>++;
}
}
}