Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/selectExpression/firstCallInChain.kt
T
2019-10-08 19:13:55 +09:00

9 lines
284 B
Kotlin
Vendored

fun one() = "one"
fun String.two() = this + "two"
fun String.three() = this + "three"
fun main(args: Array<String>) {
val s = <caret>one().two().three() // Can't select 'one()' with Alt in debugger, only 'one().two()' and 'one().two().three()' are available
}
// EXPECTED: one()