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

This commit is contained in:
Bas Leijdekkers
2016-08-01 16:51:43 +02:00
parent 7c44378da1
commit 46e4268b8f
16 changed files with 187 additions and 24 deletions

View File

@@ -0,0 +1,5 @@
class C {
void a(int i) {
System.out.println(i);
}
}