Files
kotlin-fork/idea/testData/indentationOnNewline/InLambdaInsideChainCallWithNewLine.after.kt
T
Dmitry Gridin 3a6b9c8d08 init line-indent-provider module
Part of #KT-22211
2020-06-15 16:25:16 +07:00

13 lines
223 B
Kotlin
Vendored

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