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