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

9 lines
140 B
Kotlin
Vendored

fun test(): Int {
<selection>val foo = 1
fun bar() = 2
return when (foo) {
1 -> 1
else -> 2
}</selection>
}