J2k: for through range with != comparison is also recognized

This commit is contained in:
Valentin Kipyatkov
2015-03-31 13:16:39 +03:00
parent 11b4e66fd0
commit d5326031c4
9 changed files with 120 additions and 47 deletions
@@ -0,0 +1,7 @@
public class A {
void foo(int min) {
for(int i = 10; i != min; i--) {
System.out.println(i);
}
}
}