Files
kotlin-fork/compiler/testData/ir/irText/expressions/callableReferences/boundInlineAdaptedReference.kt
T
2023-06-02 10:05:34 +00:00

10 lines
144 B
Kotlin
Vendored

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