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

21 lines
157 B
Kotlin
Vendored

// FLOW: OUT
val <caret>x = 1
val y = x
fun test() {
val y = x
val z: Int
init {
z = x
bar(x)
}
}
fun bar(m: Int) {
}