Files
kotlin-fork/idea/testData/formatter/callChain/ConsecutiveSafeCallsIndent.kt
T
2018-02-09 10:48:48 +01:00

13 lines
173 B
Kotlin
Vendored

class Some {
fun some(): Some? = this
}
public fun bar(): String? =
Some()
?.some()
?.some()
?.some()!!
.toString()
// SET_TRUE: CONTINUATION_INDENT_FOR_CHAINED_CALLS