4c69416f2b
Currently it's all about lambda parameters/destructuring entries #KT-14347 In Progress
7 lines
130 B
Kotlin
Vendored
7 lines
130 B
Kotlin
Vendored
inline fun foo(f: () -> Unit) {
|
|
val ff = { f: () -> Unit ->
|
|
f.invoke()
|
|
}
|
|
ff(<!USAGE_IS_NOT_INLINABLE!>f<!>)
|
|
}
|