Files
kotlin-fork/compiler/testData/codegen/boxInline/callableReference/bound/intrinsic.kt
T
Roman Artemev fb499def59 Update tests
2018-10-25 15:49:21 +03:00

18 lines
235 B
Kotlin
Vendored

// FILE: 1.kt
package test
inline fun foo(x: (String) -> String, z: String) = x(z)
fun String.id() = this
// FILE: 2.kt
import test.*
fun box() : String {
var zeroSlot = "fail";
val z = "O"
return foo(z::plus, "K")
}