Files
kotlin-fork/compiler/testData/codegen/box/strings/kt3571.kt
T
2018-06-09 19:15:38 +03:00

8 lines
197 B
Kotlin
Vendored

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