025360edc4
Alternatively, we could improve the lookup utilities and their usages to always find the exact override of a symbol from Collection/Iterable/CharSequence/etc, but since we need to load the original symbol anyway in cases when the loop subject's type is a type parameter, we might as well simplify everything and always reference the original symbol. Also improve exception message and removed unused declarations in IrBackendUtils.kt.
37 lines
840 B
Kotlin
Vendored
37 lines
840 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// WITH_RUNTIME
|
|
// KJS_WITH_FULL_RUNTIME
|
|
|
|
class C : CharSequence {
|
|
// Unused declarations, which are here only to confuse the backend who might lookup symbols by name
|
|
private val List<String>.length: Int
|
|
get() = size
|
|
private operator fun List<String>.get(i: Int) =
|
|
this.get(i)
|
|
|
|
override val length: Int
|
|
get() = 2
|
|
|
|
override fun get(index: Int): Char =
|
|
if (index == 0) 'O' else 'K'
|
|
|
|
override fun subSequence(startIndex: Int, endIndex: Int): CharSequence =
|
|
throw AssertionError()
|
|
}
|
|
|
|
fun box(): String {
|
|
var result = ""
|
|
val c = C()
|
|
for (i in c.indices) {
|
|
if (i == 0) {
|
|
result += c[i]
|
|
}
|
|
}
|
|
for ((i, x) in c.withIndex()) {
|
|
if (i == 1) {
|
|
result += x
|
|
}
|
|
}
|
|
return result
|
|
}
|