mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
11 lines
116 B
Kotlin
Vendored
11 lines
116 B
Kotlin
Vendored
package test
|
|
|
|
fun <T> T.noInline(p: (T) -> Unit) {
|
|
p(this)
|
|
}
|
|
|
|
inline fun inlineCall(p: () -> Unit) {
|
|
p()
|
|
}
|
|
|