Files
kotlin-fork/compiler/testData/ir/irText/expressions/callableReferences/boundInlineAdaptedReference.kt
T
2024-01-12 19:41:42 +00:00

11 lines
161 B
Kotlin
Vendored

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