Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/kt4869.kt
T
Mikhail Zarechenskiy 32f609ceee Check lambda parameter for name shadowing
#KT-5160 Fixed
2017-04-17 17:12:44 +03:00

7 lines
151 B
Kotlin
Vendored

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