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

7 lines
80 B
Kotlin
Vendored

// FLOW: OUT
fun foo(n: Int): Int = <caret>n
fun test() {
val x = foo(1)
}