10 lines
139 B
Kotlin
Vendored
10 lines
139 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun foo() {
|
|
var x: Int
|
|
fun bar() {
|
|
x = 42
|
|
}
|
|
<!UNINITIALIZED_VARIABLE!>x<!>.hashCode()
|
|
bar()
|
|
}
|