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

18 lines
219 B
Kotlin
Vendored

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