Files
kotlin-fork/compiler/testData/codegen/boxInline/defaultValues/maskElimination/kt19679_2.kt
T
2018-06-28 12:26:41 +02:00

16 lines
222 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
// 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"
}