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