Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
callableReference
/
topLevelProperty.kt
blob: ae31ab979cee72e6da6b5a177d65c50b25dd147a [
file
]
// FILE: 1.kt
package
test
val a
:
String
get
()
=
"OK"
inline
fun test
(
s
:
()
->
String
):
String
{
return
s
()
}
// FILE: 2.kt
import
test
.*
fun box
():
String
{
return
test
(::
a
)
}