Files
kotlin-fork/compiler/testData/codegen/boxInline/defaultValues/maskElimination/kt19679_3.kt
T
2023-12-26 10:18:19 +00:00

23 lines
334 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-62464
// 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
}