Files
kotlin/idea/testData/refactoring/extractFunction/basic/localFunctionInTheMiddleSimpleControlFlow.kt.after

10 lines
109 B
Plaintext
Vendored

fun test1(): Int {
return i()
}
private fun i(): Int {
val foo = 1
fun bar() = 2
return 3
}