Files
kotlin-fork/idea/testData/slicer/outflow/functionCalls.kt
T
2018-01-17 12:40:34 +03:00

7 lines
85 B
Kotlin
Vendored

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