Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
()