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

9 lines
93 B
Kotlin
Vendored

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