Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
kt6722.kt
blob: 99fd71bfb6d6b3607a437756c54a7be8d9b4f1d2 [
file
]
// WITH_STDLIB
interface
T
{
}
fun box
():
String
{
val a
=
"OK"
val t
=
object
:
T
{
val foo
by
lazy
{
a
}
}
return
t
.
foo
}