Files
kotlin-fork/idea/testData/indentationOnNewline/ConsecutiveCallsInSaeCallsMiddle.kt
T
Nikolay Krasko 195d4c54bf Indent for ?. calls (KT-3913)
#KT-3913 Fixed
2014-05-16 17:09:49 +04:00

8 lines
129 B
Kotlin
Vendored

class Some {
fun some(): Some? = this
}
public fun bar(): String? = Some()?.some()<caret>
?.some()
?.some()