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
176 B
Plaintext
7 lines
176 B
Plaintext
// WITH_STDLIB
|
|
fun test(charArray: CharArray, a: Int, b: Int, c: Int, d: Int): String {
|
|
return buildString {
|
|
appendRange(charArray, a - b, a - b + (c - d))
|
|
}
|
|
}
|