Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
funInterface
/
noOptimizedCallableReferences.kt
blob: f5eb12eb3e4e82a4734bf1638b77551fe4e628df [
file
]
// NO_OPTIMIZED_CALLABLE_REFERENCES
fun
interface
P
{
fun
get
():
String
}
class
G
(
val p
:
P
)
fun f
():
String
=
"OK"
fun box
():
String
=
G
(::
f
).
p
.
get
()