Files
kotlin/compiler/testData/diagnostics/tests/controlFlowAnalysis/initializationInLocalFun.fir.kt

9 lines
93 B
Kotlin
Vendored

fun foo() {
var x: Int
fun bar() {
x = 42
}
x.hashCode()
bar()
}