Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
kt3571.kt
blob: 2c1d3ed746077682a3d246afec94d2297c1e5364 [
file
]
// IGNORE_BACKEND_FIR: JVM_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"
}