mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 00:21:28 +00:00
24 lines
610 B
Kotlin
Vendored
24 lines
610 B
Kotlin
Vendored
// FILE: 1.kt
|
|
// LANGUAGE_VERSION: 1.2
|
|
// SKIP_INLINE_CHECK_IN: inlineFun$default
|
|
package test
|
|
|
|
class A(val value: String) {
|
|
|
|
inline fun String.inlineFun(crossinline lambda: () -> String = { this }): String {
|
|
return {
|
|
"$value ${this} ${lambda()}"
|
|
}()
|
|
}
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
//WITH_RUNTIME
|
|
// CHECK_CALLED_IN_SCOPE: function=A$inlineFun$lambda scope=box
|
|
// CHECK_CALLED_IN_SCOPE: function=A$inlineFun$lambda_0 scope=box
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
val result = with(A("VALUE")) { "OK".inlineFun() }
|
|
return if (result == "VALUE OK OK") "OK" else "fail 1: $result"
|
|
} |