Files
2022-01-12 15:09:45 +01:00

7 lines
95 B
Kotlin
Vendored

package test
inline fun f(body: () -> Unit) {
println("i'm inline function")
body()
}