17 lines
202 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|
|
}
|