Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
capture
/
captureThisAndReceiver.2.kt
blob: 433442c5a46664e40b510d9a21705e9f50dd61f4 [
file
]
class
My
(
val value
:
Int
)
inline
fun
<
T
,
R
>
T
.
perform
(
job
:
(
T
)->
R
)
:
R
{
return
job
(
this
)
}