Files
kotlin-fork/idea/testData/indentationOnNewline/InLambdaInsideChainCallSameLine.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
136 B
Kotlin
Vendored

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