Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt40332.kt
blob: 0212e85835ed8d8e2dad09a9c1097beea28bcd80 [
file
]
object
A
{
private
val s
=
object
{
inline
operator
fun invoke
():
String
=
"OK"
}
fun value
()
=
s
()
}
fun box
():
String
=
A
.
value
()