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

15 lines
196 B
Kotlin
Vendored

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