Files
kotlin-fork/compiler/testData/codegen/boxInline/defaultValues/maskElimination/kt19679.kt
T
2021-02-02 17:53:52 +03:00

20 lines
270 B
Kotlin
Vendored

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