Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/kt4869.kt
T

6 lines
111 B
Kotlin
Vendored

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