mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
package c
|
|
|
|
inline fun c(body: () -> Unit) {
|
|
b.b { println("to be inlined into b") }
|
|
body()
|
|
}
|