Files
kotlin-fork/idea/testData/indentationOnNewline/InLambdaInsideChainCallSameLineWithSpaces.kt
T
Dmitry Gridin 63a0b5bfde KotlinLikeLangLineIndentProvider: support braces in blocks
Part of #KT-22211
Part of #KT-39353
2020-06-15 16:25:57 +07:00

8 lines
138 B
Kotlin
Vendored

class Test {
fun foo(f: (String) -> String): Test = this
}
fun test() {
val abc = Test().foo()?.foo({ "str" }).foo { <caret> }
}