10 lines
157 B
Kotlin
Vendored
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()
|
|
}
|