Files
kotlin-fork/idea/testData/indentationOnNewline/InLambdaInsideChainCallWithNewLine.after.kt
T
2014-05-16 17:09:59 +04:00

11 lines
183 B
Kotlin

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