858b454138
#KT-11994 In Progress
16 lines
149 B
Kotlin
Vendored
16 lines
149 B
Kotlin
Vendored
// FLOW: IN
|
|
|
|
class A {
|
|
var <caret>x: Int
|
|
|
|
init {
|
|
x = 1
|
|
}
|
|
|
|
val y = x
|
|
|
|
fun test() {
|
|
val y = x
|
|
x = 2
|
|
}
|
|
} |