7118a4bf80
So #KT-21530 Fixed
8 lines
158 B
Kotlin
Vendored
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()
|
|
} |