Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
callableReference
/
topLevelProperty.kt
blob: 3246f7ac1a6362161191fb1ec76ff385fff959d6 [
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
)
}