Files
kotlin/idea/testData/refactoring/inline/function/expressionBody/ComplexArgumentUsedTwice.kt
2017-05-26 16:37:35 +03:00

8 lines
100 B
Kotlin
Vendored

fun <caret>f(p: Int) = p + p
fun complexFun(): Int {
}
fun g(): Int {
return f(complexFun())
}