Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
elvis
/
kt24209.kt
blob: cad3e2d27f2d36374725d702f9a59a4f5134af43 [
file
]
// IGNORE_BACKEND: JVM
interface
Interface
operator
fun
Interface
.
invoke
():
String
=
"OK"
class
Class
:
Interface
object
Holder
{
val value
=
Class
()
}
fun box
():
String
=
Holder
?.
value
()!!