5f59de23c5
^KT-57433 Fixed
10 lines
144 B
Kotlin
Vendored
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)
|
|
}
|