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

9 lines
149 B
Kotlin
Vendored

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