Files
kotlin/idea/testData/refactoring/inline/function/expressionBody/ComplexArgumentNotUsed.kt
2016-11-08 12:46:39 +03:00

11 lines
121 B
Kotlin
Vendored

fun <caret>f(p: Int) = g()
fun g() {
}
fun complexFun(): Int {
}
fun main(args: Array<String>) {
f(complexFun())
}