Files
kotlin-fork/idea/testData/refactoring/introduceVariable/kt21530_withParam.kt
T
2017-12-05 15:29:45 +03:00

7 lines
111 B
Kotlin
Vendored

fun test() = "123"
val f = <selection>test()</selection> + "456"
fun foo(test: String) {
val x = test()
}