Files
kotlin-fork/idea/testData/refactoring/extractFunction/controlFlow/evaluateExpression/simpleEvalExpr.kt
T

5 lines
95 B
Kotlin

// SIBLING:
fun foo(a: Int): Int {
val b: Int = 1
return <selection>a + b</selection>
}