mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
^KTIJ-22736 Fixed closes https://github.com/JetBrains/intellij-community/pull/2153 GitOrigin-RevId: c59aba21c9dd233236a4548eaa8424450b361f36
6 lines
139 B
Kotlin
6 lines
139 B
Kotlin
// WITH_STDLIB
|
|
fun test(charArray: CharArray, len: Int): String {
|
|
return buildString {
|
|
<caret>append(charArray, 0, len)
|
|
}
|
|
} |