Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/useUninitializedInLambda.fir.kt
T

7 lines
84 B
Kotlin
Vendored

fun bar(f: () -> Unit) = f()
fun foo() {
var v: Any
bar { v.hashCode() }
}