blob: 60c5386e244319d64a6dd4c69681f189968e5f6d [file] [log] [blame]
class Test {
fun foo(f: (String) -> String): Test = this
}
fun test() {
val abc = Test()
.foo { "Str" }
.foo {<caret>}
}