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

5 lines
87 B
Kotlin
Vendored

fun test(): Int {
<selection>fun bar(): Int = 1</selection>
return bar() + 1
}