Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
kt6722.kt
blob: 6d802360eb5aea335fadd87681ef4b554ce5a5b9 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
interface
T
{
}
fun box
():
String
{
val a
=
"OK"
val t
=
object
:
T
{
val foo
by
lazy
{
a
}
}
return
t
.
foo
}