Files
kotlin/compiler/testData/codegen/boxWithStdlib/strings/forInString.kt
Alexander Udalov 544aad390d Delete StdlibTest and StdlibTestForever
Move remaining tests to AnnotationGenTest (where they did belong to in the
first place)
2013-02-11 02:01:42 +04:00

12 lines
197 B
Kotlin
Vendored

fun foo(): Int {
var sum = 0
for (c in "239")
sum += (c.toInt() - '0'.toInt())
return sum
}
fun box(): String {
val f = foo()
return if (f == 14) "OK" else "Fail $f"
}