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