mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
All bytecode text tests are run with stdlib in the classpath and only for JVM backend, therefore directives WITH_RUNTIME, TARGET_BACKEND, IGNORE_BACKEND are not needed
14 lines
171 B
Kotlin
Vendored
14 lines
171 B
Kotlin
Vendored
fun test() {
|
|
var s = ""
|
|
for (c in "testString") {
|
|
s += c
|
|
}
|
|
}
|
|
|
|
// 0 iterator
|
|
// 0 hasNext
|
|
// 0 nextChar
|
|
// 0 INVOKEINTERFACE
|
|
// 1 ISTORE 4
|
|
// 1 ILOAD 4
|