Adjust testData to CharSequence.length transformation

This commit is contained in:
Denis Zharkov
2015-10-12 20:29:01 +03:00
committed by Mikhail Glukhikh
parent cb562e7ea5
commit f0e3fd617d
348 changed files with 524 additions and 540 deletions
+1 -1
View File
@@ -11,6 +11,6 @@ fun box(): String {
}
}
if (sb.length() == 0) return "OK"
if (sb.length == 0) return "OK"
return "Fail:\n$sb"
}
@@ -2,6 +2,6 @@ fun box(): String {
val list = java.util.ArrayList<String>()
list.add("0")
list[0][0]
list[0].length()
list[0].length
return "OK"
}