Files
kotlin-fork/compiler/testData/codegen/box/callableReference/adaptedReferences/inlineBound.kt
T
2021-09-20 19:08:22 +03:00

11 lines
166 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)