Files
kotlin-fork/compiler/testData/codegen/box/operatorConventions/kt44647.kt
T
2021-10-02 06:14:35 +00:00

10 lines
157 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM
// IGNORE_LIGHT_ANALYSIS
// WITH_RUNTIME
fun box(): String {
val sb = StringBuilder("NK")
sb[0]++
return sb.toString()
}