Files
kotlin/compiler/testData/codegen/box/strings/kt3571.kt
2015-10-14 20:39:35 +03:00

7 lines
172 B
Kotlin
Vendored

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