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

8 lines
158 B
Kotlin
Vendored

fun test() = "123"
open class First(val s: String)
object Second : First(<selection>test()</selection> + "456")
fun foo(test: String) {
val x = test()
}