Files
kotlin-fork/compiler/testData/codegen/box/strings/kt3571.kt
T
2023-12-26 10:18:19 +00:00

9 lines
205 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63828
class Thing(delegate: CharSequence) : CharSequence by delegate
fun box(): String {
val l = Thing("hello there").length
return if (l == 11) "OK" else "Fail $l"
}