IDEA-26291 (Small error in "variable is assigned to itself" inspection)

This commit is contained in:
Bas Leijdekkers
2015-12-01 19:11:41 +01:00
parent 90711de8eb
commit a20691e9c4
2 changed files with 20 additions and 7 deletions
@@ -37,4 +37,9 @@ class a {
void cf2(a aa) {
aa.f = f;
}
void m() {
double m = 1.5;
m = (double) (int) m;
}
}