mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
13 lines
232 B
Kotlin
Vendored
13 lines
232 B
Kotlin
Vendored
// NO_CHECK_LAMBDA_INLINING
|
|
// FILE: 1.kt
|
|
package test
|
|
|
|
inline fun foo(x: () -> String, y: () -> String, z: () -> String = { "" }) =
|
|
x() + y() + z()
|
|
|
|
|
|
// FILE: 2.kt
|
|
import test.*
|
|
|
|
fun box(): String = foo("O"::toString, { "K" })
|