Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
argumentOrder
/
capturedInExtension.2.kt
blob: 2b23d24c452843fb49d09f6c6b06e8e6458f318e [
file
]
package
test
inline
fun
Double
.
test
(
a
:
Int
,
b
:
Long
,
crossinline c
:
()
->
String
):
String
{
return
{
"${this}_${a}_${b}_${c()}"
}
()
}