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

7 lines
85 B
Plaintext
Vendored

fun complexFun(): Int {
}
fun g(): Int {
val p = complexFun()
return p + p
}