mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
15 lines
274 B
Kotlin
Vendored
15 lines
274 B
Kotlin
Vendored
// IGNORE_BACKEND_MULTI_MODULE: JVM_IR
|
|
// FILE: 1.kt
|
|
// SKIP_INLINE_CHECK_IN: inlineFun$default
|
|
package test
|
|
|
|
inline fun inlineFun(action: () -> Any = { "OK" }): Any {
|
|
return action()
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
return inlineFun() as String
|
|
} |