mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
^KTIJ-22712 Fixed closes https://github.com/JetBrains/intellij-community/pull/2152 GitOrigin-RevId: e8762a92a3f18685e91bb7aa007ccf731266f239
7 lines
126 B
Plaintext
7 lines
126 B
Plaintext
// WITH_STDLIB
|
|
fun test(charArray: CharArray): String {
|
|
return buildString {
|
|
appendRange(charArray, 2, 6)
|
|
}
|
|
}
|