Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}