Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/kt4869.kt
T
Denis Zharkov 4c69416f2b Report warning on unused entities that can be renamed to _
Currently it's all about lambda parameters/destructuring entries

 #KT-14347 In Progress
2016-10-24 10:19:25 +03:00

7 lines
130 B
Kotlin
Vendored

inline fun foo(f: () -> Unit) {
val ff = { f: () -> Unit ->
f.invoke()
}
ff(<!USAGE_IS_NOT_INLINABLE!>f<!>)
}