Fixed "Variable assigned to itself" quickfix (IDEA-148688)

This commit is contained in:
Bas Leijdekkers
2016-08-01 17:13:28 +02:00
parent 7c44378da1
commit 46e4268b8f
16 changed files with 187 additions and 24 deletions
@@ -0,0 +1,5 @@
class C {
void a(int i) {
i = i<caret> =
}
}