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

9 lines
155 B
Kotlin
Vendored

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