Files
kotlin-fork/idea/testData/refactoring/changeSignature/PropagateWithVariableDuplicationBefore.kt
T
2015-07-09 20:47:48 +03:00

7 lines
72 B
Kotlin
Vendored

fun <caret>foo() = 1
val n = 1
fun bar(): Int {
return foo() + n
}