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,3 @@
//statement
int[] array = new int[10];
for (int i = 0; i != 10; i++) {array[i] = i;}