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

5 lines
81 B
Kotlin
Vendored

// FLOW: OUT
fun test(m: Int, <caret>n: Int) {
val x = if (m > 1) n else 1
}