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