13 lines
173 B
Kotlin
Vendored
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
|