Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
unit
/
kt51036.kt
blob: af5b5d10a2daabb436e687e40686aead4b2aa77c [
file
]
// WITH_STDLIB
fun box
():
String
{
A
().
close
()
return
"OK"
}
class
A
{
companion
object
;
operator
fun
String
.
invoke
()
=
Unit
fun close
()
=
kotlin
.
run
{
"abc"
}()
}