mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
301 B
Kotlin
Vendored
18 lines
301 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
fun test() {
|
|
var s = ""
|
|
for (c in "testString") {
|
|
s += c
|
|
}
|
|
for (c in StringBuilder("testStringBuilder")) {
|
|
s += c
|
|
}
|
|
for (c in "testCharSequence".apply<CharSequence>{}) {
|
|
s += c
|
|
}
|
|
}
|
|
|
|
// 0 iterator
|
|
// 0 hasNext
|
|
// 0 nextChar
|