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

11 lines
151 B
Kotlin
Vendored

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