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

6 lines
105 B
Kotlin
Vendored

// SIBLING:
fun foo(a: Int): Int {
fun bar(): Int = a + 10
return <selection>bar()</selection>
}