mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
^KTIJ-22737 Fixed closes https://github.com/JetBrains/intellij-community/pull/2154 GitOrigin-RevId: 5d5d8ab49727f51532487f8a394f19181c1b269f
8 lines
185 B
Plaintext
8 lines
185 B
Plaintext
// WITH_STDLIB
|
|
fun test(charArray: CharArray?, len: Int): String {
|
|
return buildString {
|
|
if (charArray != null) {
|
|
appendRange(charArray, 0, len)
|
|
}
|
|
}
|
|
} |