Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/unsupported/localVariable.fir.kt
T

16 lines
234 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
fun eat(value: Any) {}
fun test(param: String) {
val a = ::param
val local = "local"
val b = ::local
val lambda = { -> }
val g = ::lambda
eat(::param)
}