Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
kt3571.kt
blob: 960a37656a0e4dcd1bbd1ca88f9107375ba200c2 [
file
]
class
Thing
(
delegate
:
CharSequence
)
:
CharSequence
by
delegate
fun box
():
String
{
val l
=
Thing
(
"hello there"
).
length
return
if
(
l
==
11
)
"OK"
else
"Fail $l"
}