Files
kotlin/compiler/testData/codegen/box/callableReference/adaptedReferences/inlineBound.kt

10 lines
165 B
Kotlin
Vendored

inline fun foo(x: () -> Unit): String {
x()
return "OK"
}
fun String.id(s: String = this, vararg xs: Int): String = s
fun box(): String = foo("Fail"::id)