2d001a46fc
#KT-42348 fixed
18 lines
219 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|
|
}
|