IDEA-94068 False negative on boolean condition always-false inspection.

This commit is contained in:
peter
2012-11-02 19:10:19 +01:00
parent f5a641f943
commit 686c531d3a
5 changed files with 20 additions and 11 deletions
@@ -0,0 +1,11 @@
class Foo {
private void foo() {
double d = Double.MIN_VALUE;
while (true) {
if (d == Double.MIN_VALUE) {
d = 0;
}
}
}
}