Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
box
/
directInvokeOptimization
/
boundMemberRef.kt
blob: 0c0ffe939a64e760f059e7ddebf43dd7face386d [
file
]
// CHECK_BYTECODE_TEXT
// JVM_IR_TEMPLATES
// 0 Function(^.)*.invoke
class
C
(
val x
:
String
)
{
fun foo
(
s
:
String
)
=
x
+
s
}
fun box
()
=
C
(
"O"
)::
foo
.
invoke
(
"K"
)