Files
kotlin-fork/idea/testData/slicer/inflow/memberVarWithSplitInitializer.kt
T
Alexey Sedunov 858b454138 Analyze Data Flow: Initial implementation
#KT-11994 In Progress
2017-06-09 17:19:15 +03:00

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
}
}