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