Changed usages of upto/downto in test to rangeTo and downTo, respectively.

#KT-2519 in progress
This commit is contained in:
Evgeny Gerashchenko
2012-08-07 22:07:14 +04:00
parent 662fdca034
commit a4031225d0
11 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -21,12 +21,12 @@ fun box(): String {
}
sb.append(";")
for (i in 0 downto 0) {
for (i in 0 downTo 0) {
ap(i)
}
sb.append(";")
for (i in 1 downto 0) {
for (i in 1 downTo 0) {
ap(i)
}