mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
12 lines
254 B
Kotlin
Vendored
12 lines
254 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -NON_LOCAL_RETURN_NOT_ALLOWED
|
|
|
|
inline fun <R> inlineFun(p: () -> R) {
|
|
val s = object {
|
|
|
|
val z = p()
|
|
|
|
fun a() {
|
|
p()
|
|
}
|
|
}
|
|
} |