Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/callableReferenceToLocalVariable.fir.kt
T
2019-12-23 12:11:07 +03:00

8 lines
112 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
fun a() {
val x = 10
foo(::x)
}
fun foo(a: Any) {}