Files
kotlin/idea/testData/refactoring/extractFunction/basic/localFunctionRef.kt
2014-04-22 18:45:55 +04:00

6 lines
110 B
Kotlin

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