Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxWithStdlib
/
jvmName
/
callableReference.kt
blob: 2296d1e7c572d70c48e1f6f3a90ffffdf6130254 [
file
]
@JvmName
(
"bar"
)
fun foo
()
=
"foo"
fun box
():
String
{
val f
=
(::
foo
)()
if
(
f
!=
"foo"
)
return
"Fail: $f"
return
"OK"
}