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

6 lines
91 B
Kotlin
Vendored

fun test1(): Int {
<selection>val foo = 1
fun bar() = 2
return 3</selection>
}