Files
kotlin/idea/testData/refactoring/extractFunction/defaultContainer/localFunction.kt

7 lines
120 B
Kotlin
Vendored

fun foo(a: Int, b: Int): Int {
fun bar() {
return <selection>a + b - 1</selection>
}
return bar()
}