a8914acb68
^KT-60260 Fixed
11 lines
161 B
Kotlin
Vendored
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)
|
|
}
|