KT-5692 Java to Kotlin conversion: convert int range loops in reverse order + a few more improvements

#KT-5692 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-03-26 17:50:49 +03:00
parent 16295b875b
commit 46193f3ef7
30 changed files with 379 additions and 52 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ package demo
class Test {
fun test() {
for (i in 0..10 - 1) {
for (i in 0..9) {
System.out.println(i)
}
}