Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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"
}