Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/assignedInIfElse.kt
T
2020-10-05 19:48:11 +03:00

17 lines
202 B
Kotlin
Vendored

fun foo(arg: Boolean) {
val x : Int
if (arg) {
x = 4
} else {
x = 2
}
x.hashCode()
class Local {
fun bar() {
x.hashCode()
}
}
}