Files
kotlin-fork/compiler/testData/codegen/boxInline/defaultValues/maskElimination/kt19679_3.kt
T
2018-08-02 13:19:24 +02:00

20 lines
300 B
Kotlin
Vendored

// FILE: 1.kt
package test
@Suppress("NULLABLE_INLINE_PARAMETER")
inline fun build(func: () -> Unit, pathFunc: (() -> String)? = null) {
func()
pathFunc?.invoke()
}
// FILE: 2.kt
import test.*
fun box(): String {
var result = "fail"
build ({ result = "OK" })
return result
}