mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
14 lines
222 B
Plaintext
Vendored
14 lines
222 B
Plaintext
Vendored
// "Add 'crossinline' to parameter 'block'" "true"
|
|
|
|
interface I {
|
|
fun foo()
|
|
}
|
|
|
|
inline fun bar(crossinline block: () -> Unit) {
|
|
object : I {
|
|
override fun foo() {
|
|
<caret>block()
|
|
}
|
|
}
|
|
}
|